Java ConcurrentSkipListMap isEmpty()方法及示例

Java ConcurrentSkipListMap isEmpty()方法及示例

java.util.concurrent.ConcurrentSkipListMapisEmpty() 方法是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-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程