Java 中的 ConcurrentLinkedQueue

java 8object oriented programmingprogramming

Java 中的 ConcurrentLinkedQueue 类用于使用并发链接列表实现队列。此类实现 Collection 接口以及 AbstractCollection 类。它是 Java Collection Framework 的一部分。

下面给出了一个演示此操作的程序 −

示例

import java.util.concurrent.*;
public class Demo {
   public static void main(String[] args) {
      ConcurrentLinkedQueue<String> clQueue = new ConcurrentLinkedQueue<String>();
      clQueue.add("Amy");
      clQueue.add("John");
      clQueue.add("May");
      clQueue.add("Harry");
      clQueue.add("Anne");
      System.out.println("ConcurrentLinkedQueue 中的元素为:" + clQueue);
   }
}

上述程序的输出如下 −

输出

ConcurrentLinkedQueue 中的元素为:[Amy, John, May, Harry, Anne]

现在让我们理解上述程序。

创建 ConcurrentLinkedQueue,然后向其中添加元素。最后,显示它。下面给出了演示此操作的代码片段 −

ConcurrentLinkedQueue<String> clQueue = new ConcurrentLinkedQueue<String>();
clQueue.add("Amy");
clQueue.add("John");
clQueue.add("May");
clQueue.add("Harry");
clQueue.add("Anne");
System.out.println("ConcurrentLinkedQueue 中的元素为:" + clQueue);

相关文章