코틀린 mutable collection
-
[Kotlin] Collection hierachyKotlin/Collection 2021. 8. 26. 14:45
read-only interface (Mutable이 붙지 않은 것들)- element의 값을 변경 불가 mutable interface (Mutable이 붙은 것들)- element의 값을 변경 가능( 삭제,변경,추가) interface Iterable Classes that inherit from this interface can be represented as a sequence of elements that can be iterated over. https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/ interface Collection : Iterable A generic collection of elements. M..