线程应用:wait方法和sleep方法对比
2021-05-01 16:29
标签:read pre rac The 一个 rds interrupt java log wait方法 源码注释: 使当前线程等待,直到另一个线程调用{@link java.lang.Object#notify()}方法或此对象的{@link java.lang.Object#notifyAll()}方法。 重载方法: sleep方法 源码注释: 使当前正在执行的线程进入睡眠状态(暂时停止执行)持续指定的毫秒数,具体取决于系统计时器和调度程序的精度和准确性。 线程不会失去任何监视器的所有权。 重载方法: 相同点 1. 他们都是在多线程的环境下,都可以在程序的调用处阻塞指定的毫秒数,并返回。 不同点 1.每个对象都有一个锁来控制同步访问。synchronized关键字可以和对象的锁交互,来实现线程的同步。 文章引自:https://www.cnblogs.com/linkstar/p/6043846.html 线程应用:wait方法和sleep方法对比 标签:read pre rac The 一个 rds interrupt java log 原文地址:https://www.cnblogs.com/qiancdd/p/13206723.html
换句话说,此方法的行为就像在简单地执行呼叫{@code wait(0)}。 /**
* Causes the current thread to wait until another thread invokes the
* {@link java.lang.Object#notify()} method or the
* {@link java.lang.Object#notifyAll()} method for this object.
* In other words, this method behaves exactly as if it simply
* performs the call {@code wait(0)}.
public final void wait() throws InterruptedException {
wait(0);
}
public final native void wait(long timeout) throws InterruptedException;
public final void wait(long timeout, int nanos) throws InterruptedException
/**
* Causes the currently executing thread to sleep (temporarily cease
* execution) for the specified number of milliseconds, subject to
* the precision and accuracy of system timers and schedulers. The thread
* does not lose ownership of any monitors.
public final native void wait(long timeout) throws InterruptedException;
public final void wait(long timeout, int nanos) throws InterruptedException
2. wait()和sleep()都可以通过interrupt()方法 打断线程的暂停状态 ,从而使线程立刻抛出InterruptedException。
如果线程A希望立即结束线程B,则可以对线程B对应的Thread实例调用interrupt方法。如果此刻线程B正在wait/sleep/join,则线程B会立刻抛出InterruptedException,在catch() {} 中直接return即可安全地结束线程。
需要注意的是,InterruptedException是线程自己从内部抛出的,并不是interrupt()方法抛出的。对某一线程调用 interrupt()时,如果该线程正在执行普通的代码,那么该线程根本就不会抛出InterruptedException。但是,一旦该线程进入到 wait()/sleep()/join()后,就会立刻抛出InterruptedException 。
sleep方法没有释放锁,而wait方法释放了锁,使得其他线程可以使用同步控制块或者方法。
2.wait,notify和notifyAll只能在同步控制方法或者同步控制块里面使用,而sleep可以在任何地方使用
3.sleep必须捕获异常,而wait,notify和notifyAll不需要捕获异常
4.sleep是线程类(Thread)的方法,导致此线程暂停执行指定时间,给执行机会给其他线程,但是监控状态依然保持,到时后会自动恢复。调用sleep不会释放对象锁。
5.wait是Object类的方法,对此对象调用wait方法导致本线程放弃对象锁,进入等待此对象的等待锁定池,只有针对此对象发出notify方法(或notifyAll)后本线程才进入对象锁定池准备获得对象锁进入运行状态。
上一篇:文件操作——python基础篇
文章标题:线程应用:wait方法和sleep方法对比
文章链接:http://soscw.com/index.php/essay/80944.html