참고 https://www.baeldung.com/java-8-streams-introduction https://www.baeldung.com/java-8-streams Stream API란? JAVA8의 새로운 기능 Stream 기능에는 시퀀셜한 데이터를 처리하는 클래스들이 포함되어있음 Stream 생성 collection이나 array의 stream() Stream의 of() String[] arr = new String[]{"a", "b", "c"}; Stream stream = Arrays.stream(arr); stream = Stream.of("a", "b", "c"); Empty Stream Stream.empy()로 element가 없는 stream을 생성할 수 있다. Stream str..