Les threads peuvent communiquer entre eux via les méthodes wait(), notify() et notifyAll() en Java. Ce sont des méthodes finales définies dans la classe Object et ne peuvent être appelées qu'à partir d'un contexte synchronisé . La méthode wait() fait attendre le thread actuel jusqu'à ce qu'un autre thread appelle la méthode notify() ou notifyAll() de l'objet. La méthode notify() réveille un seul thread qui attend le moniteur de cet objet. La méthode notifyAll() réveille tous les threads qui attendent le moniteur de cet objet. Un thread attend le moniteur d'un objet en appelant l'une des méthodes wait(). Ces méthodes peuvent lever une IllegalMonitorStateException si le thread actuel n'est pas le propriétaire du moniteur d'objets.
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.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!