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
参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/LinkedBlockingDeque.html#removeFirst-
极客教程