執行緒之間可以透過 Java 中的 wait()、notify() 和 notifyAll() 方法相互通訊。這些是在Object類別中定義的最終方法,只能從同步上下文中呼叫。 wait() 方法會導致目前執行緒等待,直到另一個執行緒呼叫該物件的 notify() 或 notifyAll() 方法。 notify() 方法喚醒正在等待該物件監視器的單一執行緒。 notifyAll() 方法喚醒所有正在等待該物件監視器的執行緒。執行緒透過呼叫 wait() 方法之一來等待物件的監視器。如果目前執行緒不是物件監視器的擁有者,這些方法可能會拋出 IllegalMonitorStateException。
public final void wait() throws InterruptedException
public final void notify()
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中文網其他相關文章!