https://github.com/lttttte/java_8_stream
Java 8 기능 공부 Lambda, Stream ,Collectors ,Comparable , Optional , Thread
https://github.com/lttttte/java_8_stream
collectors comparable stream
Last synced: 7 months ago
JSON representation
Java 8 기능 공부 Lambda, Stream ,Collectors ,Comparable , Optional , Thread
- Host: GitHub
- URL: https://github.com/lttttte/java_8_stream
- Owner: LTTTTTE
- Created: 2019-04-04T09:50:30.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-09T07:34:28.000Z (over 6 years ago)
- Last Synced: 2025-06-02T11:54:17.915Z (10 months ago)
- Topics: collectors, comparable, stream
- Language: Java
- Homepage:
- Size: 106 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# java_8_Stream
## Java8 에 #Stream #Lambda #FunctionalInterface #Optional #Collectors #Comparator 공부
### Collection.forEach 와 Stream.forEach 의 차이
- 순차순서 <=> 임의순서
- 구조적 간섭이외 값수정 허용 <=> 간섭불허용
- 병렬처리시 collection락 <=> 락없이 간섭불허용에만 의존(비일관적일수있음)