FutureTask的get()方法之异常处理

Posted septemberfrost

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FutureTask的get()方法之异常处理相关的知识,希望对你有一定的参考价值。

项目中遇到线程池异步处理Callable请求,阻塞接收future.get()结果时,对线程中断状态位state的处理问题。
try {
  Future<Object> future = executor.submit(callcable);
  future.get();
} catch (InterruptedException e) {
  Thread.interrupted(); // 重置当前线程的中断位state为true,便于该线程以后被其他任务正常调用
}
对项目中的这种处理感到疑惑,翻了下源码中具体的实现细节,发现Future的实现类FutureTask的get()方法如下:
public V get() throws InterruptedException, ExecutionException {
int s = state;
if (s <= COMPLETING)
s = awaitDone(false, 0L); //
throws InterruptedException
    return report(s); // throws ExecutionException
}

其中InterruptedException是awaitDone(false, 0L)方法抛出的:
if (Thread.interrupted()) {
removeWaiter(q);
throw new InterruptedException();
}
可以看出awaitDone(boolean timed, long nanos)方法中已经重置了状态位state,所以正常项目中捕获InterruptedException异常后,不需要再重新重置当前线程的状态位state。
不过为了安全保险起见,Thread.interrupted()重置一下会更加便于项目中的理解;
同时Process的实现类ProcessImpl的waitFor()抛出的InterruptedException异常处理亦是如此。

以上是关于FutureTask的get()方法之异常处理的主要内容,如果未能解决你的问题,请参考以下文章

FutureTask简单实战

FutureTask

Python之操作Excel异常处理网络编程

requests库之请求异常处理

Java并发程序设计(10)线程池之任务结果的异常处理

图解源码之FutureTask篇(AQS应用)