Java中的ConcurrentLinkedDeque
Java中的ConcurrentLinkedDeque类实现了双端队列,并使用了并发链接列表来寻求帮助。此类实现Collection接口以及AbstractCollection类。它是JavaCollectionFramework的一部分。
演示此的程序如下所示-
示例
import java.util.concurrent.*;
public class Demo {
public static void main(String[] args) {
ConcurrentLinkedDeque<String> clDeque = new ConcurrentLinkedDeque<String>();
clDeque.add("James");
clDeque.add("May");
clDeque.add("John");
clDeque.add("Sara");
clDeque.add("Anne");
System.out.println("The elements in ConcurrentLinkedDeque are: " + clDeque);
}
}上面程序的输出如下-
输出结果
The elements in ConcurrentLinkedDeque are: [James, May, John, Sara, Anne]
现在让我们了解上面的程序。
创建ConcurrentLinkedDeque,然后将元素添加到Deque的前面。最后,显示元素。证明这一点的代码片段如下-
ConcurrentLinkedDeque<String> clDeque = new ConcurrentLinkedDeque<String>();
clDeque.add("James");
clDeque.add("May");
clDeque.add("John");
clDeque.add("Sara");
clDeque.add("Anne");
System.out.println("The elements in ConcurrentLinkedDeque are: " + clDeque);