Kotlin集合

setOf

val set = setOf(1, 3, 5)

listOf

val list = listOf(1, 3, 5)

mapOf

val map = mapOf(1 to "one", 5 to "five")

你可能感兴趣的:(Kotlin集合)