java高并发InterruptedException异常问题怎么解决(interruptedexception,java,开发技术)

时间:2024-04-28 11:03:14 作者 : 石家庄SEO 分类 : 开发技术
  • TAG :

当我们在调用Java对象的wait()方法或者线程的sleep()方法时,需要捕获并处理InterruptedException异常。如果我们对InterruptedException异常处理不当,则会发生我们意想不到的后果!

程序案例

例如,下面的程序代码,InterruptedTask类实现了Runnable接口,在run()方法中,获取当前线程的句柄,并在while(true)循环中,通过isInterrupted()方法来检测当前线程是否被中断,如果当前线程被中断就退出while(true)循环,同时,在while(true)循环中,还有一行Thread.sleep(100)代码,并捕获了InterruptedException异常。

整个代码如下所示。

packageio.binghe.concurrent.lab08;
/
@authorbinghe
@version1.0.0
@description线程测试中断
/
publicclassInterruptedTaskimplementsRunnable{
@Override
publicvoidrun(){
ThreadcurrentThread=Thread.currentThread();
while(true){
if(currentThread.isInterrupted()){
break;
}
try{
Thread.sleep(100);
}catch(InterruptedExceptione){
e.printStackTrace();
}
}
}
}

上述代码的本意是通过isInterrupted()方法检查线程是否被中断了,如果中断了就退出while循环。其他线程通过调用执行线程的interrupt()方法来中断执行线程,此时会设置执行线程的中断标志位,从而使currentThread.isInterrupted()返回true,这样就能够退出while循环。

这看上去没啥问题啊!但真的是这样吗?我们创建一个InterruptedTest类用于测试,代码如下所示。

packageio.binghe.concurrent.lab08;
/

@authorbinghe
@version1.0.0
@description测试线程中断
/
publicclassInterruptedTest{
publicstaticvoidmain(String[]args){
InterruptedTaskinterruptedTask=newInterruptedTask();
ThreadinterruptedThread=newThread(interruptedTask);
interruptedThread.start();
try{
Thread.sleep(1000);
}catch(InterruptedExceptione){
e.printStackTrace();
}
interruptedThread.interrupt();
}
}

我们运行main方法,如下所示。

java高并发InterruptedException异常问题怎么解决

问题分析

上述代码明明调用了线程的interrupt()方法来中断线程,但是却并没有起到啥作用。原因是线程的run()方法在执行的时候,大部分时间都是阻塞在sleep(100)上,当其他线程通过调用执行线程的interrupt()方法来中断执行线程时,大概率的会触发InterruptedException异常,在触发InterruptedException异常的同时,JVM会同时把线程的中断标志位清除,所以,这个时候在run()方法中判断的currentThread.isInterrupted()会返回false,也就不会退出当前while循环了。

既然问题分析清除了,那如何中断线程并退出程序呢?

问题解决

正确的处理方式应该是在InterruptedTask类中的run()方法中的while(true)循环中捕获异常之后重新设置中断标志位,所以,正确的InterruptedTask类的代码如下所示。

packageio.binghe.concurrent.lab08;
/*
@authorbinghe
@version1.0.0
@description中断线程测试
*/
publicclassInterruptedTaskimplementsRunnable{
@Override
publicvoidrun(){
ThreadcurrentThread=Thread.currentThread();
while(true){
if(currentThread.isInterrupted()){
break;
}
try{
Thread.sleep(100);
}catch(InterruptedExceptione){
e.printStackTrace();
currentThread.interrupt();
}
}
}
}

可以看到,我们在捕获InterruptedException异常的catch代码块中新增了一行代码。

currentThread.interrupt();

这就使得我们捕获到InterruptedException异常后,能够重新设置线程的中断标志位,从而中断当前执行的线程。

我们再次运行InterruptedTest类的main方法,如下所示。

java高并发InterruptedException异常问题怎么解决

总结

处理InterruptedException异常时要小心,如果在调用执行线程的interrupt()方法中断执行线程时,抛出了InterruptedException异常,则在触发InterruptedException异常的同时,JVM会同时把执行线程的中断标志位清除,此时调用执行线程的isInterrupted()方法时,会返回false。

此时,正确的处理方式是在执行线程的run()方法中捕获到InterruptedException异常,并重新设置中断标志位(也就是在捕获InterruptedException异常的catch代码块中,重新调用当前线程的interrupt()方法)。

这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

本文:java高并发InterruptedException异常问题怎么解决的详细内容,希望对您有所帮助,信息来源于网络。
上一篇:Vue3中怎么使用CompositionAPI解决问题下一篇:

19 人围观 / 0 条评论 ↓快速评论↓

(必须)

(必须,保密)

阿狸1 阿狸2 阿狸3 阿狸4 阿狸5 阿狸6 阿狸7 阿狸8 阿狸9 阿狸10 阿狸11 阿狸12 阿狸13 阿狸14 阿狸15 阿狸16 阿狸17 阿狸18