java外部中断内部线程,如何优雅的中断线程

在Java中,让一个线程停止工作有以下几种方式线程自然执行完毕。

线程执行过程中出现异常。

调用stop,resume,suspend方法,这些方法都属于过时的方法,方法调用时不会释放所持有的锁,容易出现死锁现象。

使用interrupt中断线程。

在Thread类中,有如下三个方法

bVbKFhz

interrupt(): 用于线程中断,该方法并不能直接中断线程,只会将线程的中断标志位改为true。它只会给线程发送一个中断状态,线程是否中断取决于线程内部对该中断信号做什么响应,若不处理该中断信号,线程就不会中断。

interrupted(): 判断线程是否处于中断状态,该方法调用后会将线程的中断标志位重置为false。

isInterrupted(): 判断线程是否处于中断状态。

如何安全的停止线程?public class ThreadTest implements Runnable{

@Override

public void run() {

// 在线程体中对线程的中断标志位进行判断,若线程中断,则不再执行

while (!Thread.currentThread().isInterrupted()){

System.out.println("Thread is running");

try {

System.out.println(Thread.currentThread().getName() + " " + Thread.currentThread().isInterrupted());

Thread.sleep(100);

}

/**

* 需要注意的是,当方法体中的代码抛出InterruptedException异常时,线程的中断标志位会复位成

* false,若不处理,外部中断线程时,内部也无法停止,所以在catch代码中手动处理,将线程中断

*/

catch (InterruptedException e) {

System.out.println(Thread.currentThread().getName() + ":" + Thread.currentThread().isInterrupted());

// 发生InterruptedException异常时,在catch中处理,中断线程

Thread.currentThread().interrupt();

e.printStackTrace();

}

System.out.println(Thread.currentThread().getName() + ":" + Thread.currentThread().isInterrupted());

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值