📌  相关文章
📜  Java中的 LinkedBlockingDeque take() 方法

📅  最后修改于: 2022-05-13 01:54:44.154000             🧑  作者: Mango

Java中的 LinkedBlockingDeque take() 方法

LinkedBlockingDequetake()方法返回并从中移除 Deque 容器的头部。如果在等待时被中断,该方法将引发InterruptedException

句法:

public E take()

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

异常:如果函数在等待时被中断,则抛出InterruptedException

下面的程序说明了 LinkedBlockingDeque 的 take() 方法:

方案一:

// Java Program to demonstrate take()
// 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 LBD
            = new LinkedBlockingDeque();
  
        // 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 front element and prints it
        System.out.println("Head of Linked Blocking Deque: "
                           + LBD.take());
  
        // prints the Deque
        System.out.println("Linked Blocking Deque: " + LBD);
    }
}

输出:

Linked Blocking Deque: [7855642, 35658786, 5278367, 74381793]
Head of Linked Blocking Deque: 7855642
Linked Blocking Deque: [35658786, 5278367, 74381793]

程序2:演示InterruptedException

// Java Program to demonstrate take()
// 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 LBD
            = new LinkedBlockingDeque();
  
        // print Dequeue
        // the Deque is empty
        System.out.println("Linked Blocking Deque: " + LBD);
  
        try {
            // throws error as the list is empty
            // and it is interrupted while waiting
            System.out.println("Head of Linked Blocking Deque: "
                               + LBD.take());
        }
        catch (Exception e) {
            System.out.println("Exception: " + e);
        }
    }
}

运行时异常:

Max real time limit exceeded due to either by heavy load on server or by using sleep function.

参考: https: Java/util/concurrent/LinkedBlockingDeque.html#take–