Java ConcurrentSkipListMap remove()方法及示例
java.util.concurrent.ConcurrentSkipListMap 的 remove() 方法是Java中的一个内置函数,用于从该地图中移除指定键的映射。如果没有该特定键的映射,该方法返回null。执行该方法后,地图的大小会减少。
语法
ConcurrentSkipListMap.remove(Object ob)
参数: 该函数接受一个强制参数 ob ,它指定了要删除其映射的键。
返回值: 该函数返回与指定键相关的先前值,如果没有该键的映射,则返回空值。
下面的程序说明了上述方法。
// Java Program Demonstrate remove()
// 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);
// remove() operation on the map
mpp.remove(1);
System.out.println("After remove(): " + mpp);
}
}
输出。
After remove(): {2=2, 3=3, 4=4, 5=5}
程序2
// Java Program Demonstrate remove()
// 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);
// remove() operation on the map
mpp.remove(5);
System.out.println("After remove(): " + mpp);
}
}
输出。
After remove(): {1=1, 2=2, 3=3, 4=4}
参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListMap.html#remove-java.lang.Object-