我有以下几点:
public class ProducerConsumer {
private BlockingQueue<Integer> q;
private Random rnd;
private boolean run;
public ProducerConsumer(){
rnd = new Random();
q = new ArrayBlockingQueue<>(10);
run = true;
}
// high leve - with ArrayBlockingQueue
public void QProducer() throws InterruptedException{
int i;
while(run){
i = rnd.nextInt(100);
q.put(i);
System.out.println(i +" Added. Size is: "+ q.size());
}
}
public void QConsumer() throws InterruptedException{
int i;
while(run){
Thread.sleep(100);
if (rnd.nextInt(10) == 0) {
i = q.take();
System.out.println(i + " Taken. Size is: "+ q.size());
}
}
}
public void changeRun(){
run = false;
}
}
public static void main(String[] args) throws InterruptedException {
// Producer Consumer
final ProducerConsumer pc = new ProducerConsumer();
Thread t1 = new Thread(new Runnable() {
@Override
public void run() {
try {
pc.QProducer();
} catch (InterruptedException ex) {
Logger.getLogger(Threading.class.getName()).log(Level.SEVERE, null, ex);
}
}
});
Thread t2 = new Thread(new Runnable() {
@Override
public void run() {
try {
pc.QConsumer();
} catch (InterruptedException ex) {
Logger.getLogger(Threading.class.getName()).log(Level.SEVERE, null, ex);
}
}
});
t1.start();
t2.start();
Scanner scn = new Scanner(System.in);
scn.nextLine();
pc.changeRun();
t1.join();
t2.join();
}
输出:
20 Added. Size is: 1
8 Added. Size is: 2
71 Added. Size is: 3
72 Added. Size is: 4
61 Added. Size is: 5
97 Added. Size is: 6
6 Added. Size is: 7
64 Added. Size is: 8
58 Added. Size is: 9
27 Added. Size is: 10
20 Taken. Size is: 10 *
93 Added. Size is: 10
8 Taken. Size is: 9
95 Added. Size is: 10
71 Taken. Size is: 10 *
70 Added. Size is: 10
72 Taken. Size is: 10 *
85 Added. Size is: 10
61 Taken. Size is: 9
43 Added. Size is: 10
64 Added. Size is: 10 **
...
我想知道如何获取数字,但大小保持不变( * ),以及在 Queue 已满( ** )后添加 howcome 值。AFAIU,BlockingQueue 是同步的,如果队列为空,则等待添加值,如果队列满则将其删除。先感谢您。