> Java > java지도 시간 > 본문

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

WBOY
풀어 주다: 2023-09-03 23:41:09
앞으로
983명이 탐색했습니다.

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으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿