當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。