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


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


ConcurrentLinkedQueue的isEmpty()方法用于检查此队列是否为空。如果ConcurrentLinkedQueue包含零个元素,则返回true,表示ConcurrentLinkedQueue为空。

用法:

public boolean isEmpty()

返回值:如果此ConcurrentLinkedQueue包含零个元素,则此方法返回true。


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

示例1:

// Java Program Demonstrate isEmpty() 
// method of ConcurrentLinkedQueue 
  
import java.util.concurrent.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an ConcurrentLinkedQueue 
        ConcurrentLinkedQueue<String> 
            queue = new ConcurrentLinkedQueue<String>(); 
  
        // Add String to queue 
        queue.add("Aman"); 
        queue.add("Amar"); 
        queue.add("Sanjeet"); 
        queue.add("Rabi"); 
  
        // Displaying the existing ConcurrentLinkedQueue 
        System.out.println("ConcurrentLinkedQueue: " + queue); 
  
        // check whether queue isEmpty or not 
        boolean response1 = queue.isEmpty(); 
  
        // print after applying isEmpty method 
        System.out.println("Is Queue empty: " + response1); 
    } 
}
输出:
ConcurrentLinkedQueue: [Aman, Amar, Sanjeet, Rabi]
Is Queue empty: false

示例2:

// Java Program Demonstrate isEmpty() 
// method of ConcurrentLinkedQueue 
  
import java.util.concurrent.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an ConcurrentLinkedQueue 
        ConcurrentLinkedQueue<Integer> 
            queue = new ConcurrentLinkedQueue<Integer>(); 
  
        // Displaying the existing ConcurrentLinkedQueue 
        System.out.println("ConcurrentLinkedQueue: " + queue); 
  
        // check whether queue is Empty 
        boolean response1 = queue.isEmpty(); 
  
        // print after applying isEmpty method 
        System.out.println("Is queue empty  : " + response1); 
    } 
}
输出:
ConcurrentLinkedQueue: []
Is queue empty  : true

参考: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentLinkedQueue.html#isEmpty–



相关用法


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