我想要一个SynchronousQueue
从一个线程插入元素的地方put()
,所以输入被阻塞,直到元素被另一个线程接收。
在另一个线程中,我执行大量计算,并且不时想要检查一个元素是否已经可用,并使用它。但似乎isEmpty()
总是返回 true,即使另一个线程正在等待put()
调用。
这怎么可能?这是示例代码:
@Test
public void testQueue() throws InterruptedException {
final BlockingQueue<Integer> queue = new SynchronousQueue<Integer>();
Thread t = new Thread(new Runnable() {
@Override
public void run() {
while (true) {
if (!queue.isEmpty()) {
try {
queue.take();
System.out.println("taken!");
} catch (InterruptedException e) {
e.printStackTrace();
}
}
// do useful computations here (busy wait)
}
}
});
t.start();
queue.put(1234);
// this point is never reached!
System.out.println("hello");
}
编辑: isEmpty() 和 peek() 都不起作用,必须使用 poll()。谢谢!