我在理解Java的线程中断标志的语义方面遇到了一些麻烦。我的理解是,只有在线程被中断后,该标志才应该为真,并且一旦设置为true,则在InterruptedException
或等效物被捕获或使用.interrupted()
明确清除该标志之前不会再次为假。因此,我无法解释为什么以下程序打印false
:
Thread t = new Thread() {
@Override
public void run() {
try {
// While await()ing, another thread calls t.interrupt().
new CyclicBarrier(2).await();
} finally {
// I believe I should still be interrupted here, but am not...
System.out.println(Thread.currentThread().isInterrupted());
}
}
};
(为简单起见,排除了一些细节 - 假设run()
可以抛出异常。)
答案 0 :(得分:1)
1)打开CyclicBarrier源,您将看到await()方法通过调用Thread.currentThread()。interrupt()来重置中断标志。请参阅doWait(),它是wait()的实际impl。实际上这就是CyclicBarrier的javadoc所说的。
2)我不同意在捕获InterruptedException时清除中断标志