.collect(collectors.tolist())1 stream.toList() 와 .collect(Collectors.toList()) 차이 나는 보통 스트림을 사용할 때, toList()와 collect(Collectors.toList())를 주로 사용한다. toList()는 Java 16때 추가된 것이고, collect(Collectors.toList())는 Java 8때 등장한 것이다.나는 더 간결하다는 이유로 toList()를 보통 사용하였다. 하지만, 어떤 차이점이 있는 지 알아보기 위해 글을 작성한다..collect(Collectors.toList())반환되는 List의 수정이 가능하다.Null값을 허용한다. @DisplayName("Collectors.toList() modify 가능 테스트") @Test public void collectorsToList() { List modifiable = Stream.. 2024. 9. 30. 이전 1 다음