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


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


ConcurrentLinkedDeque類的push()方法是Java中的內置函數,如果可以在不違反容量限製的情況下立即執行操作,則將元素推入此雙端隊列表示的堆棧(換句話說,在此雙端隊列的開頭),成功返回true,如果當前沒有可用空間,則拋出IllegalStateException。

用法:

public void push(E e)

Here, E is the type of element maintained 
by this collection class.

參數:此方法僅接受要添加到ConcurentLinkedDeque頭部的單個參數element 。


返回值:該函數沒有返回值。

異常:該方法將引發以下異常。

  • IllegalStateException:如果由於容量限製此時無法添加該元素。
  • ClassCastException:如果指定元素的類阻止將其添加到此雙端隊列。
  • NullPointerException :如果指定的元素為null,並且此雙端隊列不允許使用null元素。
  • IllegalArgumentException:如果指定元素的某些屬性阻止將其添加到此雙端隊列。

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

示例1:該程序涉及字符類型的ConcurrentLinkedDeque。

// Java program to demonstrate push() 
// method of ConcurrentLinkedDeque 
  
import java.util.concurrent.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // Creating an empty ConcurrentLinkedDeque 
        ConcurrentLinkedDeque<String> CLD 
            = new ConcurrentLinkedDeque<String>(); 
  
        // Use push() method to add elements 
        CLD.push("Welcome"); 
        CLD.push("To"); 
        CLD.push("Geeks"); 
        CLD.push("For"); 
        CLD.push("Geeks"); 
  
        // Displaying the ConcurrentLinkedDeque 
        System.out.println("ConcurrentLinkedDeque: "
                           + CLD); 
    } 
}
輸出:
ConcurrentLinkedDeque: [Geeks, For, Geeks, To, Welcome]

示例2:顯示NullPointerException。

// Java program to demonstrate push() 
// method of ConcurrentLinkedDeque 
  
import java.util.concurrent.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // Creating an empty ConcurrentLinkedDeque 
        ConcurrentLinkedDeque<String> CLD 
            = new ConcurrentLinkedDeque<String>(); 
  
        // Displaying the ConcurrentLinkedDeque 
        System.out.println("ConcurrentLinkedDeque: "
                           + CLD); 
  
        try { 
  
            System.out.println("Trying to add "
                               + "null in ConcurrentLinkedDeque"); 
  
            // Use push() method to null element 
            CLD.push(null); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
輸出:
ConcurrentLinkedDeque: []
Trying to add null in ConcurrentLinkedDeque
java.lang.NullPointerException


相關用法


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