Java中的 ConcurrentSkipListMap put() 方法及示例
Java .util.concurrent.ConcurrentSkipListMap的put()方法是Java中的一个内置函数,它将指定的值与此映射中的指定键相关联。如果映射先前包含键的映射,则替换旧值。
句法:
public V put(K key, V value)
参数:该函数接受两个强制参数:
- key指定与指定值关联的键
- value:指定要与指定键关联的值。
返回值:该函数返回与指定键关联的先前值。如果指定键没有映射,则此方法返回 null。
下面的程序说明了上述方法:
方案一:
// Java Program Demonstrate put()
// method of ConcurrentSkipListMap
import java.util.concurrent.*;
class GFG {
public static void main(String[] args)
{
// Initializing the map
ConcurrentSkipListMap
mpp = new ConcurrentSkipListMap();
// Adding elements to this map
for (int i = 1; i <= 5; i++)
mpp.put(i, i);
// put() operation on the map
System.out.println("After put(): "
+ mpp);
}
}
输出:
After put(): {1=1, 2=2, 3=3, 4=4, 5=5}
方案二:
// Java Program Demonstrate put()
// method of ConcurrentSkipListMap
import java.util.concurrent.*;
class GFG {
public static void main(String[] args)
{
// Initializing the map
ConcurrentSkipListMap
mpp = new ConcurrentSkipListMap();
// Adding elements to this map
for (int i = 1; i <= 9; i++)
mpp.put(i, i);
// put() operation on the map
System.out.println("After put(): "
+ mpp);
}
}
输出:
After put(): {1=1, 2=2, 3=3, 4=4, 5=5, 6=6, 7=7, 8=8, 9=9}
参考: https://docs.oracle.com/javase/9/docs/api/ Java/util/concurrent/ConcurrentSkipListMap.html#put-KV-