Java LinkedBlockingDeque removeFirst()方法

Java LinkedBlockingDeque removeFirst()方法

LinkedBlockingDequeremoveFirst() 方法返回并删除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-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程