在科特林,hashMapOf()用于在 kotlin 数据结构中创建哈希映射。 HashMap 是一个存储哈希图的类,我们使用 hashMapOf() 来初始化其对象。 hashMapOf()是HashMap类的方法,返回HashMap的实例。它以键值对作为初始化参数,该参数是可选的。
用法:
HashMap hashMapOf(vararg pairs: Pair)
参数:
如果创建空的 hashmap 实例,它可以为 null。否则,它将键值对作为参数。
返回:
它根据 hashMapOf() 方法中传递的参数返回 kotlin 中的 HashMap 类的实例。
哈希图的初始化:
HashMap通过将hashMapOf()方法内的键值对作为参数写入来初始化。
Example:
在此示例中,HashMap 的实例化是通过使用 hashMapOf() 以及传入其中的参数来完成的。
Java
fun main(args: Array) {
var hashmap:HashMap = hashMapOf(1 to "Geeks", 2 to "For", 3 to "Geeks")
for (i in hashmap.keys) {
println("Key = ${i}, value = ${hashmap[i]}")
}
}
输出:
Key = 1, value = Geeks Key = 2, value = For Key = 3, value = Geeks
重要方法:
put(键:K,值:V)
该方法用于将键值对放入哈希映射中。当哈希映射未初始化时使用它,即未传递hashMap()方法内的值。
演示 put() 方法的示例 -
Java
fun main(args: Array<String>) {
var hashmap = hashMapOf<Int,String>()
hashmap.put(1, "Geeks")
hashmap.put(2, "For")
hashmap.put(3, "Geeks")
for (i in hashmap.keys) {
println("Key = ${i}, value = ${hashmap[i]}")
}
}
输出:
Key = 1, value = Geeks Key = 2, value = For Key = 3, value = Geeks
获取(键:K)
它用于获取哈希映射中具有键 K 的值。
演示 get() 方法的示例 -
Java
fun main(args: Array<String>) {
var hashmap = hashMapOf<Int,String>()
hashmap.put(1, "Geeks")
hashmap.put(2, "For")
hashmap.put(3, "Geeks")
for (i in hashmap.keys) {
println("Key = ${i}, value = ${hashmap.get(i)}")
}
}
输出:
Key = 1, value = Geeks Key = 2, value = For Key = 3, value = Geeks
删除(键:K)
它用于从具有键 K 的哈希映射中删除值。
演示从哈希映射中删除键值对的示例 -
Java
fun main(args: Array<String>) {
var hashmap = hashMapOf<Int,String>()
hashmap.put(1, "Geeks")
hashmap.put(2, "For")
hashmap.put(3, "Geeks")
hashmap.remove(2)
for (i in hashmap.keys) {
println("Key = ${i}, value = ${hashmap.get(i)}")
}
}
输出:
Key = 1, value = Geeks Key = 3, value = Geeks
包含键(键:K)
如果map包含键K则返回true。
例子:在此示例中,我们检查哈希映射中是否存在键 2 并显示它(如果存在)。
Java
fun main(args: Array<String>) {
var hashmap = hashMapOf<Int,String>()
hashmap.put(1, "Geeks")
hashmap.put(2, "For")
hashmap.put(3, "Geeks")
if(hashmap.containsKey(2)) {
println(hashmap.get(2))
}
}
输出:
For
包含值(值:V)
如果映射包含值 V,则返回 true。
例子:在此示例中,我们检查哈希映射中是否存在值 “For” 并显示它(如果存在)。
Java
fun main(args: Array<String>) {
var hashmap = hashMapOf<Int,String>()
hashmap.put(1, "Geeks")
hashmap.put(2, "For")
hashmap.put(3, "Geeks")
if(hashmap.containsValue("For")) {
println("Value found")
}
else{
println("Value not found")
}
}
输出:
Value found
替换(键:k,值:v)
该函数用于将具有某个值的键 k 替换为值 v。
例子:在此示例中,我们将键 2 的值替换为新值。
Java
fun main(args: Array<String>) {
var hashmap = hashMapOf<Int,String>()
hashmap.put(1, "Geeks")
hashmap.put(2, "For")
hashmap.put(3, "Geeks")
hashmap.replace(2,"to")
for(i in hashmap.keys)
{
println(""+i+" "+hashmap.get(i))
}
}
输出:
1 Geeks 2 to 3 Geeks
设置(键,值)
它用于在指定键处设置给定值(如果存在)。如果 HashMap 中不存在该键,它将添加新键并设置与其对应的给定值。
演示 set() 方法的示例 -
Java
fun main(args: Array<String>) {
var hashmap = hashMapOf<Int,String>()
hashmap.put(1, "Geeks")
hashmap.put(2, "For")
hashmap.put(3, "Geeks")
hashmap.set(4,"GFG")
hashmap.set(2,"to")
for(i in hashmap.keys)
{
println(""+i+" "+hashmap.get(i))
}
}
输出:
1 Geeks 2 to 3 Geeks 4 GFG
clear()
它清除整个哈希映射,即从哈希映射中删除所有元素。
演示 clear() 方法的示例 -
Java
fun main(args: Array<String>) {
var hashmap = hashMapOf<Int,String>()
hashmap.put(1, "Geeks")
hashmap.put(2, "For")
hashmap.put(3, "Geeks")
hashmap.clear()
println(hashmap)
}
输出:
{}
相关用法
- Kotlin hashSetOf()用法及代码示例
- Kotlin maxByOrNull用法及代码示例
- Kotlin groupByTo用法及代码示例
- Kotlin OverloadResolutionByLambdaReturnType.<init>用法及代码示例
- Kotlin reduceRightIndexedOrNull用法及代码示例
- Kotlin dropWhile用法及代码示例
- Kotlin takeWhile用法及代码示例
- Kotlin elementAt用法及代码示例
- Kotlin chunked用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin firstNotNullOf用法及代码示例
- Kotlin BuilderInference用法及代码示例
- Kotlin minByOrNull用法及代码示例
- Kotlin titlecase用法及代码示例
- Kotlin all用法及代码示例
- Kotlin drop用法及代码示例
- Kotlin toTypedArray用法及代码示例
- Kotlin reduceIndexed用法及代码示例
- Kotlin elementAtOrNull用法及代码示例
- Kotlin flatten用法及代码示例
- Kotlin sort用法及代码示例
- Kotlin Random.<init>用法及代码示例
- Kotlin filterIsInstanceTo用法及代码示例
- Kotlin distinctBy用法及代码示例
- Kotlin LongStream.toList用法及代码示例
注:本文由纯净天空筛选整理自piyush25pv大神的英文原创作品 Kotlin hashMapOf()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。