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


Java LinkedTransferQueue add()用法及代碼示例



java.util.concurrent.LinkedTransferQueue的add()方法是Java中的內置函數,用於在此隊列中插入元素。

用法:

LinkedTransferQueue.add(E e)

參數:該函數接受單個參數,即要插入的元素。


返回值:該函數返回一個布爾值。

異常:當指定的元素為Null時,該函數將引發NullPointerException。

以下程序說明了java.util.concurrent.LinkedTransferQueue.add()的用法:

示例1:在隊列中插入整數。

// Java Program Demonstrate add() 
// method of LinkedTransferQueue 
  
import java.util.concurrent.*; 
  
class LinkedTransferQueueAddExample1 { 
    public static void main(String[] args) 
    { 
  
        // Initializing the queue 
        LinkedTransferQueue<Integer> 
            queue = new LinkedTransferQueue<Integer>(); 
  
        // Adding elements to this queue 
        for (int i = 10; i <= 15; i++) 
            queue.add(i); 
  
        // Printing the elements of the queue 
        System.out.println("The elements in the queue are:"); 
        for (Integer i : queue) 
            System.out.print(i + " "); 
    } 
}
輸出:
The elements in the queue are:
10 11 12 13 14 15

示例2:在隊列中添加字符串。

// Java Program Demonstrate add() 
// method of LinkedTransferQueue 
  
import java.util.concurrent.*; 
  
class LinkedTransferQueueAddExample2 { 
    public static void main(String[] args) 
    { 
  
        // Initializing the queue 
        LinkedTransferQueue<String> 
            queue = new LinkedTransferQueue<String>(); 
  
        // Adding elements to this queue 
        queue.add("a"); 
        queue.add("b"); 
        queue.add("c"); 
        queue.add("d"); 
        queue.add("e"); 
  
        // Printing the elements of the queue 
        System.out.println("The elements in the queue are:"); 
        for (String i : queue) 
            System.out.print(i + " "); 
    } 
}
輸出:
The elements in the queue are:
a b c d e

示例3:演示NullPointerException

// Java Program Demonstrate add() 
// method of LinkedTransferQueue 
  
import java.util.concurrent.*; 
  
class LinkedTransferQueueAddExample2 { 
    public static void main(String[] args) 
    { 
  
        // Initializing the queue 
        LinkedTransferQueue<String> 
            queue = new LinkedTransferQueue<String>(); 
  
        try { 
            // Adding null to this queue 
            queue.add(null); 
        } 
        catch (Exception e) { 
            System.out.println("Exception: " + e); 
        } 
    } 
}
輸出:
Exception: java.lang.NullPointerException

參考: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/LinkedTransferQueue.html#add(E)



相關用法


注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 LinkedTransferQueue add() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。