如何正确的处理InterruptedException
何时会出现InterruptedException?
当一个线程处于阻塞状态下(例如休眠)的情况下,调用了该线程的interrupt()方法,则会出现InterruptedException。
@Test public void testName() throws Exception { // 被中断的线程 final Thread t = new Thread(){ @Override public void run() { try { Thread.sleep(2000); } catch (InterruptedException e) { // 当调用t.interrupt(),则会刨除此异常 e.printStackTrace(); } } }; // 去中断t的线程 new Thread(new Runnable() { public void run() { try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } t.interrupt(); } }).start(); t.start(); t.join(); }
View Code
先说结论:
public void interrupt()方法意为向该线程发起中断请求,所以当出现此异常的情况下,如果该线程在此时应该被中断,不要吞掉此异常信息,则应该在catch块里完成任务的情况工作,如果该线程不应该在此时被中断,则应该调用Thread.currentThread().interrupt() 此静态方法设置中断标示,让后续的代码来检查并处理异常,通过isInterrupted()方法,可以检查中断标记。
public void interrupt() 详细解释:
作用:
“应该关闭”的信号的具体体现:
应用场景:
static boolean interrupted() 方法解释:
作用:测试当前线程是否已被中断:返回中断标示位,并且重置中断标示位为false。