Java ConcurrentSkipListMap put()方法及示例
java.util.concurrent.ConcurrentSkipListMap 的 put() 方法是Java中的一个内置函数,它将指定的值与该地图中的指定键联系起来。如果该地图以前包含了该键的映射,那么旧的值将被替换。
语法
public V put(K key, V value)
参数: 该函数接受两个强制性参数。
- key :指定与指定值相关联的键。
- value :指定与指定键相关联的值。
返回值: 该函数返回与指定键关联的前一个值。如果没有指定键的映射,那么该方法返回null。
下面的程序说明了上述方法。
程序1:
// Java Program Demonstrate put()
// method of ConcurrentSkipListMap
import java.util.concurrent.*;
class GFG {
public static void main(String[] args)
{
// Initializing the map
ConcurrentSkipListMap<Integer, Integer>
mpp = new ConcurrentSkipListMap<Integer,
Integer>();
// 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}
程序2
// Java Program Demonstrate put()
// method of ConcurrentSkipListMap
import java.util.concurrent.*;
class GFG {
public static void main(String[] args)
{
// Initializing the map
ConcurrentSkipListMap<Integer, Integer>
mpp = new ConcurrentSkipListMap<Integer,
Integer>();
// 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-K-V-