我正在进入 Java 多线程。我对 C/C++ pthreads 非常熟悉,但在 Javanotify()
和wait()
函数方面存在问题。
我知道IllegalMoinitorStateException
只有当一个不“拥有”(又名没有同步)的线程调用通知/等待时才会抛出一个。
在编写我的应用程序时,我遇到了这个问题。我用以下测试代码隔离了问题:
public class HelloWorld
{
public static Integer notifier = 0;
public static void main(String[] args){
notifier = 100;
Thread thread = new Thread(new Runnable(){
public void run(){
synchronized (notifier){
System.out.println("Notifier is: " + notifier + " waiting");
try{
notifier.wait();
System.out.println("Awake, notifier is " + notifier);
}
catch (InterruptedException e){e.printStackTrace();}
}
}});
thread.start();
try{
Thread.sleep(1000);
}
catch (InterruptedException e){
e.printStackTrace();
}
synchronized (notifier){
notifier = 50;
System.out.println("Notifier is: " + notifier + " notifying");
notifier.notify();
}
}
}
这输出:
Exception in thread "main" java.lang.IllegalMonitorStateException
at java.lang.Object.notify(Native Method)
at HelloWorld.main(HelloWorld.java:27)
我相信我已经获得了通知对象的锁定。我究竟做错了什么?
谢谢!
编辑:
从这个可能的重复项(在 Integer 值上同步),似乎在 Integer 上同步不是一个好主意,因为很难确保您在同一个实例上同步。由于我正在同步的整数是全局可见静态整数,为什么我会得到不同的实例?