在Java's ExecutionService的文档中,有一个关闭执行程序服务的示例方法,它看起来像这样:
void shutdownAndAwaitTermination(ExecutorService pool) {
pool.shutdown(); // Disable new tasks from being submitted
try {
// Wait a while for existing tasks to terminate
if (!pool.awaitTermination(60, TimeUnit.SECONDS)) {
pool.shutdownNow(); // Cancel currently executing tasks
// Wait a while for tasks to respond to being cancelled
if (!pool.awaitTermination(60, TimeUnit.SECONDS))
System.err.println("Pool did not terminate");
}
} catch (InterruptedException ie) {
// (Re-)Cancel if current thread also interrupted
pool.shutdownNow();
// Preserve interrupt status
Thread.currentThread().interrupt();
}
}
保留中断状态的目的是什么?
答案 0 :(得分:3)
当您捕获InterruptedException
时,当前线程上的中断标志设置为false。因此,您应该将其设置为true,以便可以在该线程下执行的其他代码段知道设置了中断标志,以防它们检查它。
大多数程序员可能不必检查中断标志,我至少知道它在我们编写的企业代码中很少见。但对于库代码,最好在执行任何阻塞代码之前检查中断标志。否则库代码可能会阻止线程(以及可能的应用程序)关闭。
因此,在捕获InterruptedException之后,将中断标志设置回true是一种很好的形式。