Java8|Java8 CompletableFuture 异步执行操作
目录
- 1.简介
- 2.异步执行
- 3.守护线程
- 4.处理执行结果
1.简介
CompletableFuture 是 JDK8 提供的一个异步执行工具。示例1:
public static void main(String[] args) throws ExecutionException, InterruptedException {CompletableFuturefuture = CompletableFuture.runAsync(() -> {for (int i = 0; i < 3; i++) {System.out.println(i); try {Thread.sleep(1000L); } catch (InterruptedException ignored) {}}System.out.println("Future Finished."); }); System.out.println("Main Thread Finished."); future.get(); }
输出结果1:
文章图片
2.异步执行 CompletableFuture 提供了两个方法用于异步执行:
CompletableFuture.runAsync,
没有返回值
;
CompletableFuture.supplyAsync,
有返回值
。
示例:public static void main(String[] args) throws ExecutionException, InterruptedException {// runAsync 没有返回值CompletableFuturefuture1 = CompletableFuture.runAsync(() -> System.out.println("future1 executed.")); // supplyAsync 有返回值CompletableFuture
输出结果:
文章图片
3.守护线程 CompletableFuture返回的Future默认为
守护线程
,如果不调用get()获取结果,主线程结束后会自动结束
。主要有以下4种情景:- 情景1: 执行时间 > 主线程时间,异步线程
会执行
; - 情景2: 执行时间 > 主线程,是守护线程,会被杀死,异步线程
不会执行
; - 情景3: 执行时间 > 主线程,但是不是守护线程,不会被杀死,异步线程
会执行
; - 情景4: ExecutorService.submit(),默认不是守护线程,不会被杀死,异步线程
会执行
。
public static void main(String[] args) {ExecutorService executorService = Executors.newFixedThreadPool(2); // 1.执行时间 < 主线程,会打印CompletableFuturefuture1 = CompletableFuture.runAsync(() ->System.out.println("Thread1 是否为守护线程 : " + Thread.currentThread().isDaemon())); // 2.执行时间 > 主线程,是守护线程,会被杀死,不会打印CompletableFuture.runAsync(() -> {try {Thread.sleep(3000L); System.out.println("Thread2 是否为守护线程 : " + Thread.currentThread().isDaemon()); } catch (InterruptedException e) {e.printStackTrace(); }}); // 3.执行时间 > 主线程,但是不是守护线程,不会被杀死,会打印CompletableFuture.runAsync(() -> {try {Thread.sleep(1000L); System.out.println("Thread3 等待1秒"); System.out.println("Thread3 是否为守护线程 : " + Thread.currentThread().isDaemon()); } catch (InterruptedException e) {e.printStackTrace(); }}, executorService); // 4.ExecutorService.submit(),默认不是守护线程,不会被杀死,会打印。executorService.submit(() -> {try {Thread.sleep(2000L); System.out.println("Thread4 等待2秒"); System.out.println("Thread4 是否为守护线程 : " + Thread.currentThread().isDaemon()); } catch (InterruptedException e) {e.printStackTrace(); }}); // 主线程执行完毕System.out.println("Main Thread Finished."); executorService.shutdown(); }
输出结果2:
文章图片
4.处理执行结果 CompletableFuture还封装了很多
处理执行结果
操作。操作太多,列举比较常用的几种:thenAccept(): 对结果进行使用;
thenApply(): 对结果进行转换;
exceptionally(): 对异常进行处理;
whenComplete(): 相当于 thenAccept() + thenApply() + exceptionally().
文章图片
示例:
public static void main(String[] args) {// thenAccept对结果进行使用System.out.println("------------------------------"); CompletableFuture.supplyAsync(() -> "Thread1 Finished.").thenAccept(System.out::println); // thenApply对结果进行转换System.out.println("------------------------------"); CompletableFuture.supplyAsync(() -> "Thread2 Finished.").thenApply(s -> s + " + thenApply()").thenAccept(System.out::println); // exceptionally对异常进行处理System.out.println("------------------------------"); CompletableFuture.supplyAsync(() -> {throw new RuntimeException("Thread3 Failed."); }).exceptionally(Throwable::toString).thenAccept(System.out::println); // 主线程执行完毕System.out.println("------------------------------"); System.out.println("Main Thread Finished."); }
输出结果:
文章图片
whenComplete() 示例:
public static void main(String[] args) throws ExecutionException, InterruptedException {// thenAccept对结果进行使用System.out.println("------------------------------"); CompletableFuture future = CompletableFuture.supplyAsync(() -> "Thread1 Finished.").whenComplete(new BiConsumer() {@Overridepublic void accept(String s, Throwable throwable) {System.out.println("result: " + s); System.out.println("throwable: " + throwable); }}); // exceptionally对异常进行处理System.out.println("------------------------------"); CompletableFuture.supplyAsync(() -> {throw new RuntimeException("Thread3 Failed."); }).whenComplete(new BiConsumer
输出结果:
文章图片
整理完毕,完结撒花~
【Java8|Java8 CompletableFuture 异步执行操作】以上就是Java8 CompletableFuture 异步执行的详细内容,更多关于Java8 CompletableFuture 异步执行的资料请关注脚本之家其它相关文章!
推荐阅读
- spring|spring boot中设置异步请求默认使用的线程池
- Promise详解
- Promise|Promise 异步控制流
- Vue组件开发之异步组件详解
- 关于ajax异步分页传输数据到页面为字符串的JS解决办法
- Java8|Java8 Collections.sort()及Arrays.sort()中Lambda表达式及增强版Comparator的使用
- 异步回调函数传值问题
- 并发,并行,阻塞,非阻塞,异步,同步
- C#|C# 多线程初级汇总
- Java8|Java8 中的 HashMap 和 ConcurrentHashMap 全解析