summingint1 [Java 8] Stream - 4 (flatMap, collect) - 출처: https://www.oracle.com/java/technologies/architect-streams-pt2.html - flatMap과 collect flatMap - "map"과 "flatten" 동작을 결합한 중간 연산자 collect - stream의 요소를 결과로 계산하기 위해 "collectos" 라고 불리는 여러 동작을 인자로 축적하는 종결 연산자 위의 두 연산자들은 더 복잡한 질의를 표현하기에 아주 유용한 연산자들이다. 예를 들어 flatMap과 collect를 이용하여 단어의 stream 에서 각 알파벳 문자가 몇번 나타나는지를 Map 으로 나타낼 수 있다. Stream words = Stream.of("Java", "Magazine", "is", "the", "best").. 2021. 2. 11. 이전 1 다음