在Integer上同步时notify()上发生IllegalMonitorStateException

在Integer上同步时notify()上发生IllegalMonitorStateException,第1张

在Integer上同步时notify()上发生IllegalMonitorStateException

这个

private static Integer state = 0;

相当于

private static Integer state = Integer.valueOf(0);

调用

valueOf(0)
返回对
Integer
对象的引用,称为A。

然后你做

synchronized(state) {

您的线程获取对引用的对象的锁

state
,当前为A。

然后你做

state = 1;

相当于

state = Integer.valueOf(1);

它为您提供了对

Integer
对象的不同引用,将其称为B,然后将其分配给
state
。当您再致电时

state.notify();

您正在调用

notify()
对象B,该对象的线程不拥有监视器。您不能调用
notify
wait
在线程不拥有监视器的对象上进行调用。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5426879.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存