[Java] Stream to List

2023. 4. 12. 00:04Tip

728x90

일반적으로 Stream을 List로 바꾸는 방법은 다음과 같다.

 

toList() 메소드

 

하지만 Programmers의 JDK 14.0.2 컴파일 환경은 toList() 메소드를 지원하지 않는다.

 

collect(Collectors.toList()) 메소드

 

collect(Collectors.toList())를 사용하면 대체가 가능하다.

728x90