首页 > Java > java教程 > 在Java中,我们什么时候可以调用Thread的wait()和wait(long)方法?

在Java中,我们什么时候可以调用Thread的wait()和wait(long)方法?

WBOY
发布: 2023-09-03 23:41:09
转载
1006 人浏览过

在Java中,我们什么时候可以调用Thread的wait()和wait(long)方法?

每当对对象调用wait()方法时,它都会导致当前线程等待,直到另一个线程调用notify()notifyAll( ) 该对象的方法,而 wait(long timeout) 导致当前线程等待,直到另一个线程调用 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();
   }
}
登录后复制

输出

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
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板