BlockingQueue<> 队列的作用

BlockingQueue<> 队列的作用

BlockingQueue 实现主要用于生产者-使用者队列

BlockingQueue 实现主要用于生产者-使用者队列,BlockingQueue 实现是线程安全的。所有排队方法都可以使用内部锁或其他形式的并发控制来自动达到它们的目的

**这是一个生产者-使用者场景的一个用例。注意,BlockingQueue 可以安全地与多个生产者和多个使用者一起使用 **

此用例来自jdk文档

//这是一个生产者类
class Producer implements Runnable {
private final BlockingQueue queue;
Producer(BlockingQueue q) {
queue = q;
}
public void run() {
try {
while(true) {
queue.put(produce());
}
} catch (InterruptedException ex) {
... handle ...
}
}
Object produce() {
...
}
} //这是一个消费者类
class Consumer implements Runnable {
private final BlockingQueue queue;
Consumer(BlockingQueue q) { queue = q; }
public void run() {
try {
while(true) {
consume(queue.take());
}
} catch (InterruptedException ex) {
... handle ...
}
}
void consume(Object x) {
...
}
} //这是实现类
class Setup {
void main() {
//实例一个非阻塞队列
BlockingQueue q = new SomeQueueImplementation();
//将队列传入两个消费者和一个生产者中
Producer p = new Producer(q);
Consumer c1 = new Consumer(q);
Consumer c2 = new Consumer(q);
new Thread(p).start();
new Thread(c1).start();
new Thread(c2).start();
}
}
上一篇:关于Tcp三次握手的思考


下一篇:Linux共享内存编程实例