原文: https://www.programiz.com/java-programming/linkedblockingqueue

在本教程中,我们将借助示例学习LinkedBLockingQueue类及其方法。

Java Collections框架的LinkedBlockingQueue类使用链表提供阻塞队列实现。

它实现了 Java BlockingQueue接口

Java `LinkedBlockingQueue` - 图1


创建LinkedBlockingQueue

为了创建链接的阻塞队列,我们必须导入java.util.concurrent.LinkedBlockingQueue包。

这是我们如何在 Java 中创建链接的阻塞队列的方法:

1.没有初始容量

  1. LinkedBlockingQueue<Type> animal = new LinkedBlockingQueue<>();

在此,默认初始容量为2 ^ 31 -1

2.具有初始容量

  1. LinkedBlockingQueue<Type> animal = new LinkedBlockingQueue<>(int capacity);

这里,

  • Type - 链接的阻塞队列的类型
  • capcity - 链接的阻塞队列的大小

例如,

  1. // Creating String type LinkedBlockingQueue with size 5
  2. LinkedBlockingQueue<String> animals = new LinkedBlockingQueue<>(5);
  3. // Creating Integer type LinkedBlockingQueue with size 5
  4. LinkedBlockingQueue<Integer> age = new LinkedBlockingQueue<>(5);

注意:不必提供链表的大小。


LinkedBlockingQueue的方法

LinkedBlockingQueue类提供BlockingQueue接口中所有方法的实现。

这些方法用于从链接的阻塞队列中插入,访问和删除元素。

另外,我们还将学习两种方法put()take(),它们支持链接的阻塞队列中的阻塞操作。

这两种方法将链接的阻塞队列与其他典型队列区分开来。


插入元素

  • add() - 将指定的元素插入链接的阻塞队列。 如果队列已满,它将引发异常。
  • offer() - 将指定的元素插入链接的阻塞队列。 如果队列已满,则返回false

例如:

  1. import java.util.concurrent.LinkedBlockingQueue;
  2. class Main {
  3. public static void main(String[] args) {
  4. LinkedBlockingQueue<String> animals = new LinkedBlockingQueue<>(5);
  5. // Using add()
  6. animals.add("Dog");
  7. animals.add("Cat");
  8. // Using offer()
  9. animals.offer("Horse");
  10. System.out.println("LinkedBlockingQueue: " + animals);
  11. }
  12. }

输出

  1. LinkedBlockingQueue: [Dog, Cat, Horse]

访问元素

  • peek() - 从链接的阻塞队列的最前面返回一个元素。 如果队列为空,则返回null
  • iterator() - 返回一个迭代器对象,以按顺序访问链接的阻塞队列中的元素。 如果队列为空,则抛出异常。 我们必须导入java.util.Iterator包才能使用它。

例如:

  1. import java.util.concurrent.LinkedBlockingQueue;
  2. import java.util.Iterator;
  3. class Main {
  4. public static void main(String[] args) {
  5. LinkedBlockingQueue<String> animals = new LinkedBlockingQueue<>(5);
  6. // Add elements
  7. animals.add("Dog");
  8. animals.add("Cat");
  9. animals.add("Horse");
  10. System.out.println("LinkedBlockingQueue: " + animals);
  11. // Using peek()
  12. String element = animals.peek();
  13. System.out.println("Accessed Element: " + element);
  14. // Using iterator()
  15. Iterator<String> iterate = animals.iterator();
  16. System.out.print("LinkedBlockingQueue Elements: ");
  17. while(iterate.hasNext()) {
  18. System.out.print(iterate.next());
  19. System.out.print(", ");
  20. }
  21. }
  22. }

输出

  1. LinkedBlockingQueue: [Dog, Cat, Horse]
  2. Accessed Element: Dog
  3. LinkedBlockingQueue Elements: Dog, Cat, Horse,

删除元素

  • remove() - 返回指定的元素并将其从链接的阻塞队列中移除。 如果队列为空,则抛出异常。
  • poll() - 返回指定的元素并将其从链接的阻塞队列中移除。 如果队列为空,则返回null
  • clear() - 从链接的阻塞队列中删除所有元素。

例如:

  1. import java.util.concurrent.LinkedBlockingQueue;
  2. class Main {
  3. public static void main(String[] args) {
  4. LinkedBlockingQueue<String> animals = new LinkedBlockingQueue<>(5);
  5. animals.add("Dog");
  6. animals.add("Cat");
  7. animals.add("Horse");
  8. System.out.println("LinkedBlockingQueue " + animals);
  9. // Using remove()
  10. String element1 = animals.remove();
  11. System.out.println("Removed Element:");
  12. System.out.println("Using remove(): " + element1);
  13. // Using poll()
  14. String element2 = animals.poll();
  15. System.out.println("Using poll(): " + element2);
  16. // Using clear()
  17. animals.clear();
  18. System.out.println("Updated LinkedBlockingQueue " + animals);
  19. }
  20. }

输出

  1. LinkedBlockingQueue: [Dog, Cat, Horse]
  2. Removed Elements:
  3. Using remove(): Dog
  4. Using poll(): Cat
  5. Updated LinkedBlockingQueue: []

put()take()方法

在多线程进程中,我们可以使用put()take()阻止一个线程的操作,使其与另一个线程同步。 这些方法将等待直到可以成功执行。


put()方法

要将指定的元素插入到链接的阻塞队列的末尾,我们使用put()方法。

如果链接的阻塞队列已满,它将等待,直到链接的阻塞队列中有足够的空间来插入元素。

例如:

  1. import java.util.concurrent.LinkedBlockingQueue;
  2. class Main {
  3. public static void main(String[] args) {
  4. LinkedBlockingQueue<String> animals = new LinkedBlockingQueue<>(5);
  5. try {
  6. // Add elements to animals
  7. animals.put("Dog");
  8. animals.put("Cat");
  9. System.out.println("LinkedBlockingQueue: " + animals);
  10. }
  11. catch(Exception e) {
  12. System.out.println(e);
  13. }
  14. }
  15. }

输出

  1. LinkedBlockingQueue: [Dog, Cat]

在此,如果InterruptedException方法在等待时被中断,则可能会抛出InterruptedException。 因此,我们必须将其封装在try..catch块中。


take()方法

要从链接的阻塞队列的前面返回并删除一个元素,我们可以使用take()方法。

如果链接的阻塞队列为空,它将等待,直到要删除的链接阻塞队列中的元素为止。

例如:

  1. import java.util.concurrent.LinkedBlockingQueue;
  2. class Main {
  3. public static void main(String[] args) {
  4. LinkedBlockingQueue<String> animals = new LinkedBlockingQueue<>(5);
  5. try {
  6. //Add elements to animals
  7. animals.put("Dog");
  8. animals.put("Cat");
  9. System.out.println("LinkedBlockingQueue: " + animals);
  10. // Remove an element
  11. String element = animals.take();
  12. System.out.println("Removed Element: " + element);
  13. System.out.println("New LinkedBlockingQueue: " + animals);
  14. }
  15. catch(Exception e) {
  16. System.out.println(e);
  17. }
  18. }
  19. }

输出

  1. LinkedBlockingQueue: [Dog, Cat]
  2. Removed Element: Dog
  3. New LinkedBlockingQueue: [Cat]

在这里,如果take()方法在等待时被中断,则会抛出InterrupedException。 因此,我们必须将其封装在[HTG2]块内。


其他方法

方法 内容描述
contains(element) 在链接的阻塞队列中搜索指定的元素。 如果找到该元素,则返回true,否则返回false
size() 返回链接的阻塞队列的长度。
toArray() 将链接的阻塞队列转换为数组并返回该数组。
toString() 将链接的阻塞队列转换为字符串

为什么要使用LinkedBlockingQueue

LinkedBlockingQueue使用链表作为其内部存储。

它被视为线程安全的集合。 因此,它通常用于多线程应用中。

假设一个线程正在将元素插入队列,而另一个线程正在从队列中删除元素。

现在,如果第一个线程比第二个线程慢,则链接的阻塞队列可使第二个线程等待,直到第一个线程完成其操作。