首頁  >  文章  >  Java  >  在Java中,wait()、notify()和notifyAll()方法的重要性是什麼?

在Java中,wait()、notify()和notifyAll()方法的重要性是什麼?

WBOY
WBOY轉載
2023-09-04 09:57:061333瀏覽

在Java中,wait()、notify()和notifyAll()方法的重要性是什麼?

執行緒之間可以透過 Java 中的 wait()、notify() notifyAll() 方法相互通訊。這些是在Object類別中定義的最終方法,只能從同步上下文中呼叫。 wait() 方法會導致目前執行緒等待,直到另一個執行緒呼叫該物件的 notify() notifyAll() 方法。 notify() 方法喚醒正在等待該物件監視器的單一執行緒notifyAll() 方法喚醒所有正在等待該物件監視器的執行緒。執行緒透過呼叫 wait() 方法之一來等待物件的監視器。如果目前執行緒不是物件監視器的擁有者,這些方法可能會拋出 IllegalMonitorStateException

wait() 方法語法

public final void wait() throws InterruptedException

notify()方法語法

public final void notify()

NotifyAll() 方法語法

public final void notifyAll()<strong>
</strong>

範例

public class WaitNotifyTest {
   private static final long SLEEP_INTERVAL<strong> </strong>= 3000;
   private boolean running = true;
   private Thread thread;
   public void start() {
      print("Inside start() method");
      thread = new Thread(new Runnable() {
         @Override
         public void run() {
            print("Inside run() method");
            try {
               Thread.sleep(SLEEP_INTERVAL);
            } catch(InterruptedException e) {
               Thread.currentThread().interrupt();
            }
            synchronized(WaitNotifyTest.this) {
               running = false;
               WaitNotifyTest.this.notify();
            }
         }
      });
      thread.start();
   }
   public void join() throws InterruptedException {
      print("Inside join() method");
      synchronized(this) {
         while(running) {
            print("Waiting for the peer thread to finish.");
            wait(); //waiting, not running
         }
         print("Peer thread finished.");
      }
   }
   private void print(String s) {
      System.out.println(s);
   }
   public static void main(String[] args) throws InterruptedException {
      WaitNotifyTest test = new WaitNotifyTest();
      test.start();
      test.join();
   }
}

輸出

Inside start() method
Inside join() method
Waiting for the peer thread to finish.
Inside run() method
Peer thread finished.

以上是在Java中,wait()、notify()和notifyAll()方法的重要性是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除