时间:2021-05-19
Java如何实现线程中断?
通过调用Thread类的实例方法interrupt。如下:
Thread thread = new Thread(){ @Override public void run() { if(isInterrupted()){ System.out.println("interrupt"); } } }; thread.start(); thread.interrupt();线程中断后线程会立即停止执行吗?
NO。 而如果线程未阻塞,或未关心中断状态,则线程会正常执行,不会被打断。
Thread.interrupt()的官方解释是这样的:
If this thread is blocked in an invocation of the
Object#wait() wait(), { Object#wait(long) wait(long)}, or { Object#wait(long, int) wait(long, int)} methods of the { Object} class, or of the { #join()}, { #join(long)}, { #join(long, int)}, { #sleep(long)}, or { #sleep(long, int)}, methods of this class, then its interrupt status will be cleared and it will receive an { InterruptedException}.
也就是:处于阻塞的线程,即在执行Object对象的wait()、wait(long)、wait(long, int),或者线程类的join()、join(long)、join(long, int)、sleep(long)、sleep(long,int)方法后线程的状态,当线程调用interrupt()方法后,这些方法将抛出InterruptedException异常,并清空线程的中断状态。
比如下面的例子会中断两次,第一次sleep方法收到中断信号后抛出了InterruptedException,捕获异常后中断状态清空,然后继续执行下一次:
public static void main(String[] args) throws InterruptedException { Thread thread = new Thread(){ @Override public void run() { try { Thread.sleep(10000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("interrupt"); try { Thread.sleep(10000); } catch (InterruptedException e) { e.printStackTrace(); } } }; thread.start(); thread.interrupt(); Thread.sleep(5000); thread.interrupt(); }而下面这个例子则会一直执行,不会被打断:
public static void main(String[] args) throws InterruptedException { Thread thread = new Thread(){ @Override public void run() { while (true) System.out.println("interrupt"); } }; thread.start(); thread.interrupt(); }interrupted与isInterrupted方法啥区别?
Thread类并没有提供单独清除中断状态的方法,所以有两种方式来达到此目的:
线程中断有哪些实际应用?
线程中断的几个实际应用场景:
以上就是聊聊Java 中的线程中断的详细内容,更多关于Java 线程中断的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Java中停止线程的原则是什么?在Java中,最好的停止线程的方式是使用中断interrupt,但是这仅仅是会通知到被终止的线程"你该停止运行了",被终
线程中断机制提供了一种方法,用于将线程从阻塞等待中唤醒,尝试打断目标线程的现有处理流程,使之响应新的命令。Java留给开发者这一自由,我们应当予以善用。今天我们
本文实例讲述了Java中断一个线程操作。分享给大家供大家参考,具体如下:一点睛中断一个线程,意味着该线程在完成任务之前,停止它正在进行的一切当前的操作。有三个比
使用interrupt()中断线程当一个线程运行时,另一个线程可以调用对应的Thread对象的interrupt()方法来中断它,该方法只是在目标线程中设置一个
一、interrupt()说明interrupt()的作用是中断本线程。本线程中断自己是被允许的;其它线程调用本线程的interrupt()方法时,会通过che