写一个java代码多线程应用循环顺序读取concurrentlinkedqueue中的值
时间: 2023-06-09 10:08:25 浏览: 112
Java多线程按指定顺序同步执行
好的,以下是示例代码:
```java
import java.util.concurrent.ConcurrentLinkedQueue;
public class Example {
public static void main(String[] args) {
ConcurrentLinkedQueue<String> queue = new ConcurrentLinkedQueue<String>();
queue.add("value1");
queue.add("value2");
queue.add("value3");
Thread t1 = new Thread(new Runnable() {
@Override
public void run() {
while (!queue.isEmpty()) {
String value = queue.poll();
if (value != null) {
System.out.println("Thread 1: " + value);
}
}
}
});
Thread t2 = new Thread(new Runnable() {
@Override
public void run() {
while (!queue.isEmpty()) {
String value = queue.poll();
if (value != null) {
System.out.println("Thread 2: " + value);
}
}
}
});
t1.start();
t2.start();
}
}
```
在此示例中,我们创建了一个`ConcurrentLinkedQueue`并添加了一些值。然后,我们启动两个线程`t1`和`t2`来循环读取队列中的值。每个线程从队列中获取值并打印出来,直到队列为空。注意,由于`ConcurrentLinkedQueue`是线程安全的,因此我们可以在多个线程之间安全地共享它。
阅读全文