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


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


ConcurrentLinkedQueue的add()方法用于在此ConcurrentLinkedQueue的末尾插入作为参数传递到ConcurrentLinkedQueue的add()的元素。如果插入成功,则此方法返回True。 ConcurrentLinkedQueue是无界的,因此此方法将永远不会抛出IllegalStateException或返回false。

用法:

public boolean add(E e)

参数:此方法采用单个参数e,该参数表示要插入到此ConcurrentLinkedQueue中的元素。


返回值:成功插入元素后,此方法返回true。

异常:如果指定的元素为null,则此方法引发NullPointerException。

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

示例1:演示ConcurrentLinkedQueue的add()方法添加String的方法。

// Java Program Demonstrate add() 
// 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("Kolkata"); 
        queue.add("Patna"); 
        queue.add("Delhi"); 
        queue.add("Jammu"); 
  
        // Displaying the existing ConcurrentLinkedQueue 
        System.out.println("ConcurrentLinkedQueue: " + queue); 
    } 
}
输出:
ConcurrentLinkedQueue: [Kolkata, Patna, Delhi, Jammu]

示例2:演示ConcurrentLinkedQueue的add()方法添加数字的方法。

// Java Program Demonstrate add() 
// 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>(); 
  
        // Add Numbers to queue 
        queue.add(4353); 
        queue.add(7824); 
        queue.add(78249); 
        queue.add(8724); 
  
        // Displaying the existing ConcurrentLinkedQueue 
        System.out.println("ConcurrentLinkedQueue: " + queue); 
    } 
}
输出:
ConcurrentLinkedQueue: [4353, 7824, 78249, 8724]

示例3:演示由add()方法抛出的NullPointerException,用于添加Null。

// Java Program Demonstrate add() 
// 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>(); 
  
        // Add null to queue 
        try { 
            queue.add(null); 
        } 
        catch (NullPointerException e) { 
            System.out.println("Exception thrown "
                               + "while adding null: " + e); 
        } 
    } 
}
输出:
Exception thrown while adding null: java.lang.NullPointerException

参考: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentLinkedQueue.html#add-E-



相关用法


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