我试图在“slp”对象上调用wait()函数,然后在1000个工厂将其唤醒后,而不是消息“Finished ...”在调用notify()后出现“IllegalMonitorStateException”错误
class Class1 extends Thread{
boolean newTxt = false;
private Sleep slp = null;
synchronized public void put(Sleep slp)
{
thus.slp = slp;
try{ slp.wait();}catch(Exception x){}
}
synchronized public void wakeup()
{
slp.notify();
}
public void run()
{
while(slp == null );
try{ sleep(1000);}catch(Exception x){}
wakeup();
}
}
class Sleep extends Thread {
Class1 t;
Sleep(Class1 t) {
this.t=t;
}
public void run() {
System.out.println("Started");
t.put(this);
System.out.println("Finished after 1000 mills");
}
}
public class Koord {
public static void main(String[] args) {
Class1 t = new Class1();
Sleep t1 = new Sleep(t);
t1.start();
t.start();
}
}
答案 0 :(得分:3)
您需要成为“对象监视器的所有者”,才能在其上调用notify
。您的所有方法都会在this
和notify()
上同步到其他对象上。只需致电wait()
和notify()
。
IllegalMonitorStateException,抛出,表示某个线程试图在对象的监视器上等待,或者在没有指定监视器的情况下通知在对象监视器上等待的其他线程。