[JDK 9] Immutable Collection 생성하기
Immutable Collection? JDK 9 버전 이전 moditable List 생성 예 - Arrays.asList immutableList List 생성 예 - Collections.unmodifiableList immutableList Set 생성 예 - Collections.unmodifiableSet JDK 9 버전 이후 List List.of List.copyOf Set Set.of Set.copyOf Map Map.of Map.copyOf Map.ofEntries 1. Immutable Collection? Immutable은 수정할 수 없는(=불변)을 뜻하는 말로, Immutable Collection을 다른 말로 표현하자면 읽기전용 컬랙션을 의미합니다. 어떤 데이터를 이용하고자 할..
2022. 5. 6. 11:51