当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ConcurrentSkipListMap isEmpty()用法及代码示例


java.util.concurrent.ConcurrentSkipListMap的isEmpty()方法是Java中的内置函数,它返回布尔值,如果该映射不包含键值映射,则返回boolean值,否则返回false。

用法:

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–



相关用法


注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 ConcurrentSkipListMap isEmpty() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。