Java:notify()上的IllegalMonitorStateException

时间:2013-05-06 16:38:12

标签: java multithreading notify

我试图在“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();
 }
}

1 个答案:

答案 0 :(得分:3)

您需要成为“对象监视器的所有者”,才能在其上调用notify。您的所有方法都会在thisnotify()上同步到其他对象上。只需致电wait()notify()

IllegalMonitorStateException抛出,表示某个线程试图在对象的监视器上等待,或者在没有指定监视器的情况下通知在对象监视器上等待的其他线程。