java 条件 等待_java – 如何唤醒等待相同条件的所有线程?
我有以下情況.幾個線程正在等待相同的條件.當得到通知時,所有應該停止等待,更改標志并返回對象:
public Object getObject(){
lock.lock();
try {
while (check)){
condition.await();
}
return returnObjectAndSetCheckToFalse();
} finally {
lock.unlock();
}
}
但是這段代碼不起作用,因為更快的線程可能會將check標志更改為false,而第二個更慢的線程將再次阻塞.
可能有一個邏輯,即兩個等待線程都將被喚醒,它們都將check flag設置為false,并返回對象?
或許它是矛盾的?
最簡單的方法是將wait更改為if語句,但是這很容易受到虛假喚醒的影響.
解決方法:
據我所知,如果你的condition.await()返回,你需要從所有線程中的方法體返回.
這個丑陋的解決方案應該有所幫助,盡管我認為有更好的解決方法:
public Object getObject() {
lock.lock();
try {
int localstate = this.state;
while (check && localstate == this.state)) {
condition.await(); // all threads that are waiting here have the same state
}
if (!check) {
this.state++; // first thread will change state thus making other threads ignore the 'check' value
}
return returnObjectAndSetCheckToFalse();
} finally {
lock.unlock();
}
}
標簽:notify,java,multithreading,concurrency,wait
來源: https://codeday.me/bug/20190725/1532974.html
總結
以上是生活随笔為你收集整理的java 条件 等待_java – 如何唤醒等待相同条件的所有线程?的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: oracle9i查等待事件,Oracle
- 下一篇: ueditor工具栏弹出html,UEd