java – 为什么notify方法应该在synchronized块中?

前端之家收集整理的这篇文章主要介绍了java – 为什么notify方法应该在synchronized块中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

请考虑以下代码: –

class CalculateSeries implements Runnable{
    int total;
    public void run(){
        synchronized(this){                          // *LINE 1* 
            for(int i = 1; i <= 10000; i++) {
                total += i;
            }

            notify(); //Notify all the threads waiting on this instance of the class to wake up
        }
    }
} 

另一个类通过在同步块内获取锁定来等待此类的实例.但是如果我没有在同步块中保存run方法中的代码,那么我会得到IllegalMonitorStateException.

notify()应该意味着向所有等待的线程发出信号.那为什么它应该在同步块内呢?

最佳答案

notify() should mean to give signal to all the threads waiting.

实际上,没有.它标志着一个任意选择的等待线程. notifyAll()发出所有信号.

Then why should it be inside synchronized block?

因为等待不是为了它自己而发生的.你检查一个条件,如果没有达到,你就等到有人告诉你它现在可以满足(然后再检查).如果没有同步,您将在检查条件和实际等待之间遇到竞争条件.

原文链接:https://www.f2er.com/java/437985.html

猜你在找的Java相关文章