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


Java ConcurrentLinkedDeque offerFirst()用法及代碼示例


java.util.concurrent.ConcurrentLinkedDeque.offerFirst()方法是Java中的一種內置方法,它將作為參數傳遞的指定元素插入雙端隊列的前麵。

用法:

Conn_Linked_Deque.offerFirst(Object elem)

參數:該方法接受參數elem,以選擇要插入雙端隊列的元素的元素。


返回值:如果將元素成功添加到雙端隊列中,則該函數返回True,否則返回False。

異常:如果傳遞的參數為NULL,則該函數將引發NullPointerException。

以下示例程序旨在說明ConcurrentLinkedDeque.offerFirst()方法:

程序1

/* Java Program to Demonstrate offerFirst() 
   method of ConcurrentLinkedDeque */
  
import java.util.concurrent.*; 
class GFG { 
    public static void main(String[] args) 
    { 
  
        // Creating an empty Deque 
        ConcurrentLinkedDeque<String> cld =  
                     new ConcurrentLinkedDeque<String>(); 
  
        // Add elements into the Deque 
        cld.add("Welcome"); 
        cld.add("To"); 
        cld.add("Geeks"); 
        cld.add("4"); 
        cld.add("Geeks"); 
  
        // Displaying the Deque 
        System.out.println("Elements in Deque: "
                           + cld); 
  
        // Displaying the First element 
        System.out.println("The First element is: " +  
                                       cld.getFirst()); 
  
        /* Insert an element at the front 
            of the deque */
        if (cld.offerFirst("GFG")) { 
            // Displaying the First element 
            System.out.println("The Inserted element is: " +  
                                             cld.getFirst()); 
        } 
  
        // Displaying the Deque 
        System.out.println("Elements in Deque: "
                           + cld); 
  
        // Displaying the First element 
        System.out.println("The First element is: " +  
                                      cld.getFirst()); 
    } 
}
輸出:
Elements in Deque: [Welcome, To, Geeks, 4, Geeks]
The First element is: Welcome
The Inserted element is: GFG
Elements in Deque: [GFG, Welcome, To, Geeks, 4, Geeks]
The First element is: GFG

示例2:

/* Java Program to Demonstrate offerFirst() 
   method of ConcurrentLinkedDeque */
  
import java.util.concurrent.*; 
class GFG { 
    public static void main(String[] args) 
    { 
  
        // Creating an empty Deque 
        ConcurrentLinkedDeque<Integer> cld = 
                   new ConcurrentLinkedDeque<Integer>(); 
  
        // Add elements into the Deque 
        cld.add(12); 
        cld.add(43); 
        cld.add(29); 
        cld.add(16); 
        cld.add(70); 
  
        // Displaying the Deque 
        System.out.println("Elements in Deque: "
                           + cld); 
  
        // Displaying the First element 
        System.out.println("The First element is: " +  
                                     cld.getFirst()); 
  
        try { 
            cld.offerFirst(null); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
  
        /* Insert an element at the front 
            of the deque */
        if (cld.offerFirst(74)) { 
            // Displaying the First element 
            System.out.println("The Inserted element is: " +  
                                            cld.getFirst()); 
        } 
  
        // Displaying the Deque 
        System.out.println("Elements in Deque: "
                           + cld); 
  
        // Displaying the First element 
        System.out.println("The First element is: " +  
                                      cld.getFirst()); 
    } 
}
輸出:
Elements in Deque: [12, 43, 29, 16, 70]
The First element is: 12
java.lang.NullPointerException
The Inserted element is: 74
Elements in Deque: [74, 12, 43, 29, 16, 70]
The First element is: 74

參考: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentLinkedDeque.html#offerFirst()



相關用法


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