JavaCompletableFuture是Java中的异步编程工具,是Future的强化版本,可用于异步执行任务。它提供了更强的可扩展性和灵活性,可以灵活组装和处理多个Future。
一、Java CompletableFuture的基本使用
JavaCompletableFuture可以很容易地创建异步任务,您只需提供一个Supplier函数型接口的lambda表达式即可。
以下是创建和获取CompletableFuture结果的示例代码:
CompletableFuturefuture = CompletableFuture.supplyAsync(() -> { // 模拟复杂计算任务 try { Thread.sleep(2000); } catch (InterruptedException e) { throw new IllegalStateException(e); } // 返回计算结果 return "Result"; });
而且对于结果的获取,我们有很多方法,下面将展示阻塞和非阻塞两种方法:
// 阻塞方式:get try { String result = future.get(); //此处会阻塞,等待结果的产生 System.out.println(result); } catch (Exception e) { throw new IllegalStateException(e); } // 非阻塞方式:thenApply future.thenApply(result -> { System.out.println(result); return null; });
二、Java CompletableFuture的组合使用
JavaCompletableFuture除了基本使用外,最大的优点就是它的“组合”,这主要体现在它有一系列的方法来组合多个CompletableFuture。
下面是一个CompletableFuture的组合使用的示例:
CompletableFuturefuture1 = CompletableFuture.supplyAsync(() -> "Hello"); CompletableFuturefuture2 = CompletableFuture.supplyAsync(() -> "World"); CompletableFuturefuture = future1.thenCombine(future2, (s1, s2) -> s1 + " " + s2); // 输出: Hello World System.out.println(future.get());
三、Java CompletableFuture的异常处理
在异步任务执行过程中,JavaCompletableFuture提供了一些异常处理方法,可以方便地处理异常。
下面是使用异常处理的示例:
CompletableFuturefuture = CompletableFuture.supplyAsync(() -> { if (true) { throw new RuntimeException("Exception happened."); } return "Result"; }); // 使用exceptionally处理异常 future = future.exceptionally(e -> "Default Value"); // 输出: Default Value System.out.println(future.get());
在上面的例子中,我们故意抛出一个异常,然后使用exceptionally来处理这个异常。如果任务执行成功,该函数将不会执行。如果抛出异常,我们将遵循这种异常处理逻辑,该函数的返回值将被正常处理。