java线程调用wait方法_什么时候可以在Java中调用线程的wait()和wait(long)方法?

本文详细解析了Java中线程的wait方法的两种形式:无参和带超时时间参数的方法。通过具体实例展示了如何使用wait方法使线程进入等待状态,并说明了线程在等待状态下的行为。
摘要由CSDN通过智能技术生成

每当在对象上调用wait()方法时,它都会导致当前线程等待,直到另一个线程为此对象调用notify()或notifyAll()方法,而wait(long timeout)导致当前线程等待直到另一个线程线程为此对象调用notify()或notifyAll()方法,或者指定的超时时间已经过去。

等待()

在下面的程序中,当在对象上调用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(1000)时,即使在超时时间过后未调用notify()或notifyAll(),线程也会从运行状态进入等待状态,线程将从等待状态变为可运行状态。

示例class MyRunnable implements Runnable {

public void run() {

synchronized(this) {

System.out.println("In run() method");

try {            this.wait(1000);

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()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值