kotlin的map

目录

  • HashMap

官网地址:https://kotlinlang.org/docs/collections-overview.html

HashMap

fun testMap() {
    var mMap = hashMapOf<String, String>("key1" to "value1", "key2" to "value2")
    mMap.entries.forEach {
        println(it.key + ":" + it.value)
    }
}
kotlin的map_第1张图片

你可能感兴趣的:(Kotlin,kotlin,开发语言,android)