비어있는 리스트 표현 [보러가기]
Returns an empty read-only list. The returned list is serializable (JVM).
val list = listOf<String>()
println("list.isEmpty() is ${list.isEmpty()}") // true
// another way to create an empty list,
// type parameter is inferred from the expected type
val other: List<Int> = emptyList()
// Empty lists are equal
println("list == other is ${list == other}") // true
println(list) // []
println(other)
// list[0] // will fail
728x90
반응형
'Algorithm > Kotlin' 카테고리의 다른 글
Kotlin Data Structure (0) | 2021.10.24 |
---|---|
Kotlin 조건문 (0) | 2021.04.30 |
Kotlin 기본 변수 및 연산자 (0) | 2021.04.30 |