Collections
Kotlin 은 Java 와 다르게 mutable, immutable 2가지의 collection 이 존재한다.
mutable 은 변경 가능한 collection 을 말한다.
immutable 은 변경 불가능한 collection 을 말한다.
mutable prefix 가 없는 자료구조는 기본적으로 immutable 이다.
Last updated
Kotlin 은 Java 와 다르게 mutable, immutable 2가지의 collection 이 존재한다.
mutable 은 변경 가능한 collection 을 말한다.
immutable 은 변경 불가능한 collection 을 말한다.
mutable prefix 가 없는 자료구조는 기본적으로 immutable 이다.
Last updated