我的代码中的第二个线程将抛出0除外,但我只会在第一个线程完成后捕获它。第一个线程可以运行几天,这意味着我只会在发生几天之后才能捕获我的异常。 我可以在没有继承ThreadPoolExecutor并覆盖afterExecute的情况下以某种方式解决这个问题吗?
这是我的代码:
ExecutorService executor = Executors.newCachedThreadPool();
Future<Integer> future = executor.submit(new MyTestC(4000));
Future<Integer> future2 = executor.submit(new MyTestC(0));
ArrayList<Future<Integer>> futures = new ArrayList<>();
futures.add(future); futures.add(future2);
for(Future<Integer> f: futures)
{
try {
int result = f.get();
System.out.println(result);
} catch (InterruptedException | ExecutionException e) {
e.printStackTrace();
}
}
class MyTestC implements Callable<Integer> {
int sleep;
public MyTestC(int sleep)
{
this.sleep = sleep;
}
@Override
public Integer call() throws Exception {
if(sleep > 0)
Thread.sleep(sleep);
//If 0 will throw exception:
int tmp = 4/sleep;
return sleep;
}
}