낭만 프로그래머

Kotlin(코틀린) 배우기 - Collection 본문

Kotlin

Kotlin(코틀린) 배우기 - Collection

조영래 2021. 11. 2. 11:25
Collection

1. 코틀린은 Collection 인터페이스를 구현한 많은 타입이들 존재한다. 대표적인 것이 List, Map 과 같은 것이다. 자세히 구분해 보면 아래와 같다. ( Iteraotr는 생략 되었음)

Collection List MutableList ArrayList
Set MutableSet HashSet
LinkedHashSet
Map MutableMap HashMap
LinkedHashMap


2. Collection 의 Property
    - indices : Collection의 Index의 IntRange 객체 ( 예. 0..2 )
    - lastIndex : 마지막 Index

3. Collection 의 함수들은 아래 URL을 참조하자
    Package kotlin.collections