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


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


LinkedBlockingDeque的removeLast()方法返回並刪除Deque容器尾部的元素。如果Deque容器為空,則此方法將引發NoSuchElementException。

用法:

public E removeLast()

參數:此方法不接受任何參數。


返回值:此方法返回Deque容器的尾部。

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

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

示例1:

// Java Program to demonstrate removeLast() 
// 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 Dequeue 
        System.out.println("Linked Blocking Deque: " + LBD); 
  
        // removes the last element and prints it 
        System.out.println("Linked Blocking Deque: " +       
                        LBD.removeLast()); 
  
        // prints the Deque 
        System.out.println("Linked Blocking Deque: " + LBD); 
    } 
}
輸出:
Linked Blocking Deque: [7855642, 35658786, 5278367, 74381793]
Linked Blocking Deque: 74381793
Linked Blocking Deque: [7855642, 35658786, 5278367]

示例2:

// Java Program to demonstrate removeLast() 
// 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>(); 
  
        // Add numbers to end of LinkedBlockingDeque 
        LBD.add(7855642); 
        LBD.add(35658786); 
        LBD.add(5278367); 
        LBD.add(74381793); 
  
        // print Dequeue 
        System.out.println("Linked Blocking Deque: " + LBD); 
  
        // Deque is empty 
        LBD.clear(); 
  
        // throws an exception 
        LBD.removeLast(); 
    } 
}

輸出:

Exception in thread "main" java.util.NoSuchElementException
    at java.util.concurrent.LinkedBlockingDeque.removeLast(LinkedBlockingDeque.java:462)
    at GFG.main(GFG.java:29)

參考: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/LinkedBlockingDeque.html#removeLast–



相關用法


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