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


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


java.util.concurrent.ConcurrentLinkedDeque.isEmpty()是Java中的内置函数,用于检查双端队列是否包含元素。

用法:

public boolean isEmpty()

参数:该函数不接受任何参数。


返回:此方法返回一个布尔值,说明此双端队列是否为空。

以下示例程序旨在说明ConcurrentLinkedDeque.isEmpty()方法:

范例:1

// Java Program Demonstrate 
// isEmpty() method of ConcurrentLinkedDeque 
  
import java.util.concurrent.*; 
  
class ConcurrentLinkedDequeDemo { 
    public static void main(String[] args) 
    { 
        ConcurrentLinkedDeque<String> cld 
            = new ConcurrentLinkedDeque<String>(); 
  
        // Displaying the existing LinkedDeque 
        System.out.println("ConcurrentLinkedDeque: "
                           + cld); 
  
        // Check if the queue is empty 
        // using isEmpty() method 
        System.out.println("Is deque empty: "
                           + cld.isEmpty()); 
    } 
}
输出:
ConcurrentLinkedDeque: []
Is deque empty: true

示例:2

// Java Program Demonstrate 
// isEmpty() method of ConcurrentLinkedDeque 
  
import java.util.concurrent.*; 
  
class ConcurrentLinkedDequeDemo { 
    public static void main(String[] args) 
    { 
        ConcurrentLinkedDeque<String> cld 
            = new ConcurrentLinkedDeque<String>(); 
  
        cld.add("GFG"); 
        cld.add("Gfg"); 
        cld.add("GeeksforGeeks"); 
        cld.add("Geeks"); 
  
        // Displaying the existing LinkedDeque 
        System.out.println("ConcurrentLinkedDeque: "
                           + cld); 
  
        // Check if the queue is empty 
        // using isEmpty() method 
        System.out.println("Is deque empty: "
                           + cld.isEmpty()); 
    } 
}
输出:
ConcurrentLinkedDeque: [GFG, Gfg, GeeksforGeeks, Geeks]
Is deque empty: false


相关用法


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