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


Java LinkedBlockingDeque removeFirst()用法及代碼示例


LinkedBlockingDeque的removeFirst()方法返回並從中刪除Deque容器的第一個元素。如果Deque容器為空,則此方法將引發NoSuchElementException。

用法:

public E removeFirst()

返回值:此方法返回Deque容器的頭,這是第一個元素。


異常:如果Deque為空,則該函數將引發NoSuchElementException。

以下示例程序旨在說明LinkedBlockingDeque的removeFirst()方法:

示例1:

// Java Program to demonstrate removeFirst() 
// method of LinkedBlockingDeque 
  
import java.util.concurrent.LinkedBlockingDeque; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
        throws InterruptedException 
    { 
  
        // create object of LinkedBlockingDeque 
        LinkedBlockingDeque<Integer> LBD 
            = new LinkedBlockingDeque<Integer>(); 
  
        // Add numbers to end of LinkedBlockingDeque 
        LBD.add(7855642); 
        LBD.add(35658786); 
        LBD.add(5278367); 
        LBD.add(74381793); 
  
        // print Dequee 
        System.out.println("Linked Blocking Deque: " + LBD); 
  
        // removes the front element and prints it 
        System.out.println("First element of Linked Blocking Deque: "
                           + LBD.removeFirst()); 
  
        // prints the Deque 
        System.out.println("Linked Blocking Deque: " + LBD); 
    } 
}
輸出:
Linked Blocking Deque: [7855642, 35658786, 5278367, 74381793]

First element of Linked Blocking Deque: 7855642

Linked Blocking Deque: [35658786, 5278367, 74381793]

示例2:

// Java Program to demonstrate removeFirst() 
// method of LinkedBlockingDeque 
  
import java.util.concurrent.LinkedBlockingDeque; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
        throws NoSuchElementException 
    { 
  
        // create object of LinkedBlockingDeque 
        LinkedBlockingDeque<Integer> LBD 
            = new LinkedBlockingDeque<Integer>(); 
  
        // print Dequee 
        System.out.println("Linked Blocking Deque: " + LBD); 
  
        try { 
            // throws an exception 
            LBD.removeFirst(); 
        } 
        catch (Exception e) { 
            System.out.println("Exception when removing "
                               + "first element from this Deque: "
                               + e); 
        } 
    } 
}
輸出:
Linked Blocking Deque: []
Exception when removing first element from this Deque: java.util.NoSuchElementException

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