您的位置:首页 > 编程语言 > Java开发

java 线程 阻塞中断 InterrupedtException

2016-05-28 14:54 459 查看
要想讨论正确处理InterrupedtException的方法,就要知道InterruptedException是什么。

根据Java Doc的定义

Thrown when a thread is waiting, sleeping, or otherwise occupied, and the thread is interrupted, either before or during the activity. Occasionally a method may wish to test whether the current
thread has been interrupted, and if so, to immediately throw this exception.

意思是说当一个线程处于等待,睡眠,或者占用,也就是说阻塞状态,而这时线程被中断就会抛出这类错误。Java6之后结束某个线程A的方法是A.interrupt()。如果这个线程正处于非阻塞状态,比如说线程正在执行某些代码的时候,不过被interrupt,那么该线程的interrupt变量会被置为true,告诉别人说这个线程被中断了(只是一个标志位,这个变量本身并不影响线程的中断与否),而且线程会被中断,这时不会有interruptedException。但如果这时线程被阻塞了,比如说正在睡眠,那么就会抛出这个错误。请注意,这个时候变量interrupt没有被置为true,而且也没有人来中断这个线程。比如如下的代码:

[java] view
plain copy

while(true){

try {

Thread.sleep(1000);

}catch(InterruptedException ex)

{

logger.error("thread interrupted",ex);

}

}

当线程执行sleep(1000)之后会被立即阻塞,如果在阻塞时外面调用interrupt来中断这个线程,那么就会执行

[java] view
plain copy

logger.error("thread interrupted",ex);

这个时候其实线程并未中断,执行完这条语句之后线程会继续执行while循环,开始sleep,所以说如果没有对InterruptedException进行处理,后果就是线程可能无法中断

所以,在任何时候碰到InterruptedException,都要手动把自己这个线程中断。由于这个时候已经处于非阻塞状态,所以可以正常中断,最正确的代码如下:

[java] view
plain copy

while(!Thread.isInterrupted()){

try {

Thread.sleep(1000);

}catch(InterruptedException ex)

{

Thread.interrupt()

}

}

这样可以保证线程一定能够被及时中断。

对于更为复杂的情况,除了要把自己的线程中断之外,还有可能需要抛出InterruptedException给上一层代码
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: