728x90 Skip1 stream stream은 collection에 있는 데이터를 처리하는 모음이다. 따라서 컬랙션은 데이터를 가지고 있고 스트림은 이 데이터들을 사용해 어떠한 로직을 수행한다. 스트림은 스트림이 처리하는 데이터 소스를 변경하지 않는다. 1 2 3 4 5 6 7 8 9 10 public static void main(String[] args) { List names = new ArrayList(); names.add("keesun"); names.add("toby"); names.add("yunki"); names.stream() .map(String::toUpperCase) .forEach(System.out::println); } Colored by Color Scripter cs 위 코드에서 map을 사용한 직후의.. 2021. 11. 21. 이전 1 다음 728x90