class MyObject{
private Queue<String> queue = new ConcurrentLinkedQueue<String>();
public synchronized void set(String s){
while(queue.size() >= 10){
try {
wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
queue.add(s);
notify();
}
}
class Producer implements Runnable{
private MyObject myObj;
public Producer(MyObject myObj) {
this.myObj= myObj;
}
@Override
public void run() {
// 每条线程执行30次set
for (int i = 0; i < 30; i++) {
this.myObj.set("obj:" + i);
}
}
}
public static void main(String[] args){
Producer producer = new Producer(new MyObject());
// 生成30条线程
for (int i = 0; i < 10; i++) {
Thread thread = new Thread(producer);
thread.start();
}
// 运行结果是只set了30次
}
Ich bezweifle, dass notify(), wenn es eine Benachrichtigung veröffentlicht, die wait()-Methode anderer Threads nicht weiter ausführen lässt?
当你队列的数量大于10的时候, 你每个线程都是先
wait()
住了, 不会走到notify()
的啊. 你需要一个单独的线程去监控队列的大小, 大于10的时候notify()
, 比如可以把你的稍微改一下然后有个监控线程