学习目标:
记录学习CompletableFuture的过程
- 一周掌握 CompletableFuture
学习:
CompletableFuture的在工作中的使用
目的:
- CompletableFuture的使用
- 灵活使用CompletableFuture进行接口优化
- 使用runAsync,结果无返回值
ExecutorService executorService = Executors.newFixedThreadPool(10);System.out.println("main start");CompletableFuture.runAsync(()->{System.out.println("当前运行县线程:"+Thread.currentThread().getId()+"=="+Thread.currentThread().getName());int i=10/2;System.out.println("运行结果:"+i);},executorService);//线程池未销毁 所以程序不会停下来System.out.println(executorService.isShutdown());executorService.shutdown();
- 使用supplyAsync,结果有返回值
CompletableFuture<Integer> integerCompletableFuture = CompletableFuture.supplyAsync(() -> {System.out.println("当前运行县线程:" + Thread.currentThread().getId() + "==" + Thread.currentThread().getName());int i = 10 / 2;System.out.println("运行结果:" + i);return i;}, executorService);Integer integer = integerCompletableFuture.get();System.out.println("main end"+integer.toString());
注意的是,如果你的线程池中有10个线程,那么当你的程序运行结束后也不会自动停止下来,因为线程池还存在,需要进行销毁后才能停止。