📅  最后修改于: 2023-12-03 15:16:23.861000             🧑  作者: Mango
LinkedBlockingDeque是Java中的双向阻塞队列,该队列的元素按照FIFO(先进先出)的顺序排列,即队列头部的元素是最早添加的元素,队列尾部的元素是最近添加的元素。
removeLast() 方法用于从队列的尾部移除一个元素,并返回该元素。如果队列为空,则该方法会阻塞,直到队列中有可用元素。
public E removeLast() throws InterruptedException
方法参数:无
方法返回值:从队列尾部移除的元素
import java.util.concurrent.LinkedBlockingDeque;
public class Main {
public static void main(String[] args) {
LinkedBlockingDeque<String> queue = new LinkedBlockingDeque<>();
// 添加元素到队列
queue.add("Java");
queue.add("Python");
queue.add("C++");
try {
// 从队列的尾部移除一个元素
String lastElement = queue.removeLast();
System.out.println("从队列尾部移除的元素为:" + lastElement);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
输出结果:
从队列尾部移除的元素为:C++