我们什么时候可以在 Java 中调用线程的 wait() 和 wait(long) 方法?

javaobject oriented programmingprogramming

每当对对象调用 wait() 方法时,它都会导致当前线程等待,直到另一个线程调用此对象的 notify() notifyAll() 方法,而 wait(long timeout) 会导致当前线程等待,直到另一个线程调用此对象的 notify()notifyAll() 方法,或者指定的超时时间已过。

wait()

在下面的程序中,当对对象调用 wait()  时,线程从运行状态进入等待状态。它等待其他线程调用 notify()notifyAll() ,以便进入可运行状态,将形成 死锁 

示例

class MyRunnable implements Runnable {
   public void run() {
      synchronized(this) {
          System.out.println("在 run() 方法中");
         try {
            this.wait();
            System.out.println("线程处于等待状态,等待同一对象上的其他线程调用notify()或notifyAll()");
         } catch (InterruptedException ie) {
            ie.printStackTrace();
         }
      }
}
public class WaitMethodWithoutParameterTest {
   public static void main(String[] args) {
       MyRunnable myRunnable = new MyRunnable();
       Thread thread = new Thread(myRunnable, "Thread-1");
       thread.start();
   }
}

输出

在 run() 方法中

wait(long)

在下面的程序中,当在对象上调用  wait(1000) 时,线程从 运行状态进入等待状态,即使在超时时间过后没有调用  notify() notifyAll(),线程也会从等待状态进入可运行状态。

示例

class MyRunnable implements Runnable {
   public void run() {
      synchronized(this) {
          System.out.println("在 run() 方法中");
         try {
            this.wait(1000);             System.out.println("线程处于等待状态,等待同一对象上的其他线程调用notify()或notifyAll()");
         } catch (InterruptedException ie) {
            ie.printStackTrace();
         }
      }
   }
}
public class WaitMethodWithParameterTest {
   public static void main(String[] args) {
      MyRunnable myRunnable = new MyRunnable();
      Thread thread = new Thread(myRunnable, "Thread-1");
      thread.start();
   }
}

输出

在 run() 方法中
线程处于等待状态,等待同一对象上的其他线程调用notify()或notifyAll()

相关文章