Java ConcurrentSkipListMap isEmpty()方法及示例
java.util.concurrent.ConcurrentSkipListMap 的 isEmpty() 方法是Java中的一个内置函数,它返回布尔值,即如果该地图不包含键值映射,则返回真,否则返回假。
语法
public boolean isEmpty()
参数: 该函数不接受任何参数。
返回值: 如果该地图不包含键值映射,该函数返回true,否则返回false。
下面的程序说明了上述方法。
程序1 :
// Java Program Demonstrate isEmpty()
// 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);
// checking if map is empty
System.out.println(mpp.isEmpty());
}
}
输出。
false
程序2
// Java Program Demonstrate isEmpty()
// 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>();
// checking if map is empty
System.out.println(mpp.isEmpty());
}
}
输出。
true
参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListMap.html#isEmpty-