Wait() / notify() synchronization(Wait()/notify() 同步)
问题描述
我正在尝试检查等待/通知在 java 中的工作方式.
I'm trying to check how wait/notify works in java.
代码:
输出返回
我期待在执行 notify() 时等待将结束 &System.out.println("wait over");
将被打印出来.但它似乎只有在 t
完成它的 run()
时才会被打印出来.
I was expecting when notify() is executed the wait will be over & System.out.println("wait over");
will get printed. But it seems it only gets printed when t
finished its run()
.
推荐答案
对象监控锁需要执行同一个锁的单引用...
Object monitor locks need to be performed a single reference of the same lock...
在您的示例中,您在 Thread
的实例上 waiting
,但使用 Runnable
中的 notify
.相反,您应该使用单个通用锁对象...例如
In your example you are waiting
on an instance of the Thread
, but using notify
from the Runnable
. Instead, you should use a single, common lock object...for example
输出...
wait over
和 leaving run method
可以根据线程调度改变位置.
wait over
and leaving run method
could change positions depending on the thread scheduling.
您可以尝试将睡眠放在 synchronized
块的一侧.这将释放监视器锁,允许 wait
部分继续运行(因为在释放锁之前它无法启动)
You could try putting the sleep out side the synchronized
block. This will release the monitor lock allowing the wait
section to continue running (as it can't start until the lock is released)
这篇关于Wait()/notify() 同步的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!