>  기사  >  Java  >  Java에서는 언제 Thread의 wait() 및 wait(long) 메소드를 호출할 수 있습니까?

Java에서는 언제 Thread의 wait() 및 wait(long) 메소드를 호출할 수 있습니까?

WBOY
WBOY앞으로
2023-09-03 23:41:09977검색

Java에서는 언제 Thread의 wait() 및 wait(long) 메소드를 호출할 수 있습니까?

개체에서 wait() 메서드가 호출될 때마다 다른 스레드가 해당 개체에 대해 notify() 또는 notifyAll( ) 메서드를 호출할 때까지 현재 스레드가 대기하게 됩니다. 반면 wait( 긴 시간 초과) 다른 스레드가 이 개체에 대해 notify() 또는 notifyAll( ) 메서드를 호출하거나 지정된 시간 초과 기간이 경과할 때까지 현재 스레드를 기다리게 합니다.

wait()

아래 프로그램에서는 객체에 대해 wait() 이 호출되면 스레드가 실행 상태에서 대기 상태 로 전환됩니다. 다른 스레드가 notify() 또는 notifyAll() 을 호출하여 교착 상태를 형성하는 실행 가능 상태로 들어갈 때까지 기다립니다.

예제

class MyRunnable implements Runnable {
   public void run() {
      synchronized(this) {
         System.out.println("In run() method");
         try {
            this.wait();
            System.out.println("Thread in waiting state, waiting for some other threads on same object to call notify() or 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();
   }
}

output

In run() method

wait(long)

아래 프로그램에서 객체에 대해 wait(1000)이 호출되면 스레드는 실행 상태에서 대기 상태로 들어가고, 시간 초과 기간 이후에 notify() 또는 notifyAll()이 호출되지 않더라도 스레드도 대기 상태에서 실행 가능 상태로 전환됩니다.

class MyRunnable implements Runnable {
   public void run() {
      synchronized(this) {
         System.out.println("In run() method");
         try {
<strong>            this.wait(1000); 
</strong>            System.out.println("Thread in waiting state, waiting for some other threads on same object to call notify() or 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();
   }
}

출력

In run() method
Thread in waiting state, waiting for some other threads on same object to call notify() or notifyAll()

위 내용은 Java에서는 언제 Thread의 wait() 및 wait(long) 메소드를 호출할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제