场景:我们使用线程池的时候,假如说某个线程出现了异常此时我们需要将异常捕获打印出相应的异常日志
这个时候就可以用到CompletableFuture的exceptionally方法,其作用是返回一个新的CompletableFuture,如果原CompletableFuture以异常的方式完成,则使用提供的方法来计算新CompletableFuture的值。
下面给出代码演示一下
public static final ThreadPoolExecutor executor = new ThreadPoolExecutor(10, 100, 20, TimeUnit.SECONDS, new LinkedBlockingDeque<>(10), new ThreadPoolExecutor.CallerRunsPolicy());public static void main(String[] args) {List<CompletableFuture<Integer>> futures = new ArrayList<>();//执行任务for (int i = 20; i >= 0; i--) {int finalI = i;CompletableFuture<Integer> completableFuture = CompletableFuture.supplyAsync(() -> mission(finalI), executor).exceptionally(e -> {System.out.println("子线程出现异常 异常信息:" + e.getMessage());return -1;});futures.add(completableFuture);}//将收集到的结果放入到list中用于遍历List<Integer> list = new ArrayList<>();for (CompletableFuture<Integer> future : futures) {try {list.add(future.get()); // 等待 CompletableFuture 完成并获取结果} catch (Exception e) {throw new RuntimeException(e);}}System.out.println(list);}public static int mission(int i) {return 10 % i;}
最后的执行结果如下