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


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


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

用法:

public boolean offer(E e)

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


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

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

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

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

// Java Program Demonstrate offer() 
// 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 using offer() method 
        queue.offer("Aman"); 
        queue.offer("Amar"); 
        queue.offer("Sanjeet"); 
        queue.offer("Rabi"); 
  
        // Displaying the existing ConcurrentLinkedQueue 
        System.out.println("ConcurrentLinkedQueue: " + queue); 
    } 
}
输出:
ConcurrentLinkedQueue: [Aman, Amar, Sanjeet, Rabi]

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

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

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

// Java Program Demonstrate offer() 
// 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.offer(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#offer-E-



相关用法


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