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

最佳答案

您必须是“对象监视器的所有者”才能在其上调用notify。您的方法在this上都是同步的,而在其他对象上是notify()的。只需调用wait()notify()

IllegalMonitorStateException,抛出该异常表示线程试图在对象的监视器上等待,或者通知其他线程在对象监视器上等待而没有拥有指定的监视器。

10-05 19:08