线程运行while true 杀不死线程
时间: 2023-11-25 11:06:58 浏览: 158
杀不死的进程
3星 · 编辑精心推荐
当线程运行在一个`while (true)`循环中时,简单的调用`interrupt()`方法是无法终止线程的。这是因为`interrupt()`方法只是将线程的中断标记设为`true`,而并不会直接终止线程的执行。线程在每次循环时并不会主动检查中断标记。
要正确终止处于运行状态的线程,可以使用以下方法之一:
1. 在循环中使用`isInterrupted()`方法来检查中断标记,如果中断标记为`true`,则退出循环,从而终止线程。示例代码如下:
```
while (!isInterrupted()) {
// 执行任务...
}
```
2. 在循环中捕获`InterruptedException`异常,并在catch块中终止线程。当线程处于阻塞状态时,调用`interrupt()`方法会清除中断标记并抛出`InterruptedException`异常。示例代码如下:
```
try {
while (true) {
// 执行任务...
}
} catch (InterruptedException ie) {
// 退出循环,线程终止!
}
```
综合以上两种方式,可以实现一个通用的终止线程的形式。示例代码如下:
```
@Override
public void run() {
try {
while (!isInterrupted()) {
// 执行任务...
}
} catch (InterruptedException ie) {
// 由于产生InterruptedException异常,退出循环,线程终止!
}
}
```
请注意,为了确保线程能够正确地终止,当使用`interrupt()`方法时,必须在适当的位置处理`InterruptedException`异常或检查中断标记。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [线程终止方式](https://blog.csdn.net/qq_35044419/article/details/117703595)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文