如何使用执行程序运行多个线程时立即捕获错误?

时间:2013-04-06 12:51:24

标签: java multithreading exception executorservice

我的代码中的第二个线程将抛出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;
}

}

1 个答案:

答案 0 :(得分:2)

您可以使用ExecutorCompletionService来解决此问题。它将按照他们完成的顺序返回期货。