Home > Java > javaTutorial > body text

What is the importance of wait(), notify() and notifyAll() methods in Java?

WBOY
Release: 2023-09-04 09:57:06
forward
1344 people have browsed it

What is the importance of wait(), notify() and notifyAll() methods in Java?

Threads can communicate with each other through the wait(), notify() and notifyAll() methods in Java. These are the final methods defined in the Object class and can only be called from a synchronized context. The wait() method causes the current thread to wait until another thread calls the object's notify() or notifyAll() method. notify() Method Wakes up a single thread that is waiting for this object's monitor. notifyAll() Method Wake up all threads that are waiting for the object monitor. A thread waits for an object's monitor by calling one of the wait() methods. These methods may throw IllegalMonitorStateException if the current thread is not the owner of the object monitor.

wait() method syntax

public final void wait() throws InterruptedException
Copy after login

notify() method syntax

public final void notify()
Copy after login

NotifyAll() method syntax

public final void notifyAll()<strong>
</strong>
Copy after login

Example

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();
   }
}
Copy after login

Output

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

The above is the detailed content of What is the importance of wait(), notify() and notifyAll() methods in Java?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template