Stream

Stream의 연산

중간 연산과 최종 연산으로 분류할 수 있다.

stream.distinct(0).limit(5).sorted().forEach(System.out::println)

// distinct() : 중간연산
// limit() : 중간연산
// sorted() : 중간연산
// forEach() : 최종연산

지연된 연산

병렬 스트림