Java ConcurrentSkipListMap clear()方法及示例
java.util.concurrent.ConcurrentSkipListMap 的 clear() 方法是Java中的一个内置函数,它可以删除该地图中的所有映射。这意味着地图中的所有元素都被删除,并返回一个空地图。
语法
public void clear()
参数: 该函数不接受任何参数。
返回值: 该函数从该地图中删除所有的映射。
下面的程序说明了上述方法。
程序1 :
// Java Program Demonstrate clear()
// 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 in map
for (int i = 1; i <= 5; i++)
mpp.put(i, i);
// print original map
System.out.println("map elements are: "
+ mpp);
mpp.clear();
// after clear() operation
System.out.println("after clear the map is: "
+ mpp);
}
}
输出。
map elements are: {1=1, 2=2, 3=3, 4=4, 5=5}
after clear the map is: {}
程序2
// Java Program Demonstrate clear()
// 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 in map
for (int i = 1; i <= 10; i++)
mpp.put(i, i);
// print original map
System.out.println("map elements are: "
+ mpp);
mpp.clear();
// after clear() operation
System.out.println("after clear the map is: "
+ mpp);
}
}
输出。
map elements are: {1=1, 2=2, 3=3, 4=4, 5=5, 6=6, 7=7, 8=8, 9=9, 10=10}
after clear the map is: {}
参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListMap.html#clear-