在Kotlin中,HashMap是一种可变的集合,用于存储键值对。以下是HashMap的基本用法示例: // 创建一个空的HashM
在Kotlin中,HashMap是一种可变的集合,用于存储键值对。以下是HashMap的基本用法示例:
// 创建一个空的HashMap
val hashMap = HashMap<String, Int>()
// 添加键值对
hashMap["key1"] = 1
hashMap["key2"] = 2
hashMap["key3"] = 3
// 获取值
val value = hashMap["key1"]
println(value) // 输出: 1
// 遍历HashMap
for ((key, value) in hashMap) {
println("Key: $key, Value: $value")
}
// 删除键值对
hashMap.remove("key2")
// 检查键是否存在
if (hashMap.containsKey("key2")) {
println("Key 'key2' exists")
} else {
println("Key 'key2' does not exist")
}
// 检查值是否存在
if (hashMap.containsValue(3)) {
println("Value '3' exists")
} else {
println("Value '3' does not exist")
}
// 获取HashMap的大小
val size = hashMap.size
println("HashMap size: $size")
HashMap可以存储任意类型的键和值,可以方便地进行插入、删除、查找操作。在实际开发中,HashMap通常用于快速查找和存储键值对。
--结束END--
本文标题: kotlin中hashmap的用法是什么
本文链接: https://lsjlt.com/news/589262.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0