当前位置: 首页 > news >正文

自己开网站做职称论文可以吗seo博客大全

自己开网站做职称论文可以吗,seo博客大全,多语言外贸企业网站源码,在线家装设计平台Future 接口理论知识复习 Future 接口#xff08;FutureTask 实现类#xff09;定义了操作异步任务执行的一些方法#xff0c;如获取异步任务的执行结果、取消任务的执行、判断任务是否被取消、判断任务执行是否完毕等。 比如主线程让一个子线程去执行任务#xff0c;子线…Future 接口理论知识复习 Future 接口FutureTask 实现类定义了操作异步任务执行的一些方法如获取异步任务的执行结果、取消任务的执行、判断任务是否被取消、判断任务执行是否完毕等。 比如主线程让一个子线程去执行任务子线程可能比较耗时启动子线程开始执行任务后主线程就去做其他事情了忙其他事情或者先执行完过了一会才去获取子任务的执行结果或变更的任务状态。 总结Future 接口可以为主线程开一个分支任务专门为主线程处理耗时和复杂业务。 Future 接口常用实现类 FutureTask 异步任务 Future 接口能干什么 Future 是 Java5 新加的一个接口它提供了一种异步并行计算的功能。 如果主线程需要执行一个很耗时的计算任务我们就可以通过 Future 把这个任务放到异步线程中执行。主线程继续处理其他任务或者先行结束再通过 Future 获取计算结果。 本源的 Future 接口相关架构 绿色虚线表示实现的关系实现一个接口 绿色实线表示接口之间的继承 蓝色实线表示类之间的继承 Future 编码实战和优缺点分析 编码实战 public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {FutureTaskString futureTask new FutureTask(new MyThread());Thread t1 new Thread(futureTask);t1.start();System.out.println(futureTask.get());} }class MyThread implements CallableString {Overridepublic String call() throws Exception {System.out.println(------come in call());return hello Callable;} }优缺点 优点 Future 线程池异步多线程任务配合能显著提高程序的执行效率。 public class FuturePoolDemo {public static void main(String[] args) {method1();System.out.println(------------------);method2();}private static void method2() {ExecutorService executorService Executors.newFixedThreadPool(3);long startTime System.currentTimeMillis();FutureTaskString futureTask1 new FutureTaskString(() - {try {TimeUnit.MILLISECONDS.sleep(500);} catch (InterruptedException e) {e.printStackTrace();}return task1 over;});executorService.submit(futureTask1);FutureTaskString futureTask2 new FutureTaskString(() - {try {TimeUnit.MILLISECONDS.sleep(300);} catch (InterruptedException e) {e.printStackTrace();}return task2 over;});executorService.submit(futureTask2);FutureTaskString futureTask3 new FutureTaskString(() - {try {TimeUnit.MILLISECONDS.sleep(300);} catch (InterruptedException e) {e.printStackTrace();}return task3 over;});executorService.submit(futureTask3);long endTime System.currentTimeMillis();System.out.println(----costTime: (endTime - startTime) 毫秒);System.out.println(Thread.currentThread().getName() \t ----end);executorService.shutdown();}private static void method1() {// 3 个任务目前只有一个线程 main 来处理long startTime System.currentTimeMillis();// 暂停毫秒try {TimeUnit.MILLISECONDS.sleep(500);} catch (InterruptedException e) {e.printStackTrace();}try {TimeUnit.MILLISECONDS.sleep(300);} catch (InterruptedException e) {e.printStackTrace();}try {TimeUnit.MILLISECONDS.sleep(300);} catch (InterruptedException e) {e.printStackTrace();}long endTime System.currentTimeMillis();System.out.println(----costTime: (endTime - startTime) 毫秒);System.out.println(Thread.currentThread().getName() \t ----end);} } 输出 ----costTime: 1114毫秒 main ----end ------------------ ----costTime: 46毫秒 main ----end缺点 get() 阻塞 Slf4j(topic c.FutureAPIDemo) public class FutureAPIDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {FutureTaskString futureTask new FutureTask(() - {log.debug(Thread.currentThread().getName() \t -----come in);try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {throw new RuntimeException(e);}return task over;});Thread t1 new Thread(futureTask, t1);t1.start();log.debug(futureTask.get());log.debug(Thread.currentThread().getName() \t ----忙其他任务了);} } 输出 20:59:50.067 [t1] - t1 -----come in 20:59:55.075 [main] - task over 20:59:55.075 [main] - main ----忙其他任务了主线程需等待 get 方法获取到 t1 线程的执行结果才开始执行。 建议 get 方法容易导致阻塞一般建议放在程序后面一旦调用 get 方法求结果如果计算没有完成容易导致程序阻塞。如果不希望等待过长时间希望在等待指定时间后自动结束。可以使用 get(long timeout, TimeUnit unit)方法 get(long timeout, TimeUnit unit)方法演示 Slf4j(topic c.FutureAPIDemo) public class FutureAPIDemo {public static void main(String[] args) throws ExecutionException, InterruptedException, TimeoutException {FutureTaskString futureTask new FutureTask(() - {log.debug(Thread.currentThread().getName() \t -----come in);try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {throw new RuntimeException(e);}return task over;});Thread t1 new Thread(futureTask, t1);t1.start();log.debug(Thread.currentThread().getName() \t ----忙其他任务了);log.debug(futureTask.get(2, TimeUnit.SECONDS));} } 输出 isDone() 轮询容易浪费系统资源 Slf4j(topic c.FutureAPIDemo) public class FutureAPIDemo {public static void main(String[] args) throws ExecutionException, InterruptedException, TimeoutException {FutureTaskString futureTask new FutureTask(() - {log.debug(Thread.currentThread().getName() \t -----come in);try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {throw new RuntimeException(e);}return task over;});Thread t1 new Thread(futureTask, t1);t1.start();log.debug(Thread.currentThread().getName() \t ----忙其他任务了);while(true) {if(futureTask.isDone()) {log.debug(futureTask.get());break;} else {try {TimeUnit.MILLISECONDS.sleep(500);} catch (InterruptedException e) {throw new RuntimeException(e);}log.debug(正在处理中...);}}} } 输出 22:56:26.267 [t1] - t1 -----come in 22:56:26.267 [main] - main ----忙其他任务了 22:56:26.775 [main] - 正在处理中... 22:56:27.281 [main] - 正在处理中... 22:56:27.784 [main] - 正在处理中... 22:56:28.285 [main] - 正在处理中... 22:56:28.787 [main] - 正在处理中... 22:56:29.292 [main] - 正在处理中... 22:56:29.795 [main] - 正在处理中... 22:56:30.299 [main] - 正在处理中... 22:56:30.801 [main] - 正在处理中... 22:56:31.306 [main] - 正在处理中... 22:56:31.306 [main] - task over轮询的方式会耗费无谓的 CPU 资源而且也不见得能及时地得到计算结果。如果想要异步获取结果通常都会以轮询的方式去获取结果尽量不要阻塞。 总结 Future 对于结果的获取不是很友好只能通过阻塞或轮询的方式得到任务的结果。 想完成一些复杂的任务 对于简单的业务场景使用 Future 是完全 OK 的。但是对于回调通知通过轮询的方式去判断任务是否完成这样非常占用 CPU并且代码也不优雅。 一些复杂任务 将多个异步任务的计算结果组合起来后一个异步任务的计算结果需要前一个异步任务的值。将这两个或多个异步计算合成一个一步计算这几个一步计算相互独立同时后面这个又依赖前一个处理的结果。对计算速度选最快当Future集合中某个任务最快结束时返回结果返回第一名处理 对于简单的业务场景使用Future完全OK,但想完成上述一些复杂的任务使用Future之前提供的那点API就囊中羞涩处理起来不够优雅这时候还是让CompletableFuture以声明式的方式优雅的处理这些需求。Future能干的CompletableFuture都能干。 CompletableFuture 对 Future 的改进 CompletableFuture 为什么出现 get() 方法在 Future 计算完成之前会一直处在阻塞状态下isDone() 方法容易耗费 CPU 资源。对于真正的异步处理我们希望是可以通过传入回调函数在 Future 结束时自动调用该回调函数这样我们就不用等待结果。 阻塞的方式和异步编程的设计理念相违背而轮询的方式会耗费无谓的 CPU 资源。因此JDK8 设计出 CompletableFuture。CompletableFuture 提供了一种观察者模式类似的机制可以让人物执行完成后通知监听的一方。 CompletableFuture 和 CompletionStage 源码分别介绍 类架构说明 CompletableFuture 实现了 Future 接口和 CompletionStage 接口。 接口 CompletionStage CompletionStage 代表异步计算过程中的某一个阶段一个阶段完成以后可能会触发另外一个阶段一个阶段的计算执行可以是一个 FunctionConsumer 或者 Runnable。比如 stage.thenApply(x - square(x)).thenAccept(x - Systemm.out.print(x)).thenRun(() - System.out.println())一个阶段的执行可能是被单个阶段的完成触发也可能是由多个阶段一起触发。 类 CompletableFuture 在 Java8 中CompletableFuture 提供了非常强大的 Future 的扩展功能可以帮助我们简化异步编程的复杂性并且提供了函数式编程的能力可以通过回调的方式处理计算结果也提供了转换和组合 CompletableFuture 的方法。它可能代表一个明确完成的 Future也有可能代表一个完成阶段CompletionStage它支持在计算完成以后触发一些函数或执行某些动作。它实现了 Future 和 CompletionStage 接口 核心的四个静态方法 方法介绍 runAsync 无返回值 public static CompletableFutureVoid runAsync(Runnable runnable) {return asyncRunStage(asyncPool, runnable); }public static CompletableFutureVoid runAsync(Runnable runnable,Executor executor) {return asyncRunStage(screenExecutor(executor), runnable); }supplyAsync 有返回值 public static U CompletableFutureU supplyAsync(SupplierU supplier) {return asyncSupplyStage(asyncPool, supplier); }public static U CompletableFutureU supplyAsync(SupplierU supplier,Executor executor) {return asyncSupplyStage(screenExecutor(executor), supplier); }上述Executor executor参数说明 没有指定Executor的方法直接使用默认的ForkJoinPool.commonPool()作为它的线程池执行异步代码。如果指定线程池则使用我们自定义的或者特别指定的线程池执行异步代码。 代码演示 runAsync 未设置线程池参数 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {CompletableFutureVoid future CompletableFuture.runAsync(() - {log.debug(Thread.currentThread().getName() \t ------come in);try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}log.debug(--------task is over);});System.out.println(future.get());} }输出 runAsync 设置线程池参数 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {ExecutorService executorService Executors.newFixedThreadPool(3);CompletableFutureVoid future CompletableFuture.runAsync(() - {log.debug(Thread.currentThread().getName() \t ------come in);try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}log.debug(--------task is over);}, executorService);System.out.println(future.get());executorService.shutdown();} }输出 supplyAsync 未设置线程池参数 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {CompletableFutureString future CompletableFuture.supplyAsync(() - {log.debug(Thread.currentThread().getName() \t ------come in);try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}log.debug(--------task is over);return hello supplyAsync;});log.debug(future.get());} }输出 supplyAsync 设置线程池参数 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {ExecutorService executorService Executors.newFixedThreadPool(3);CompletableFutureString future CompletableFuture.supplyAsync(() - {log.debug(Thread.currentThread().getName() \t ------come in);try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}log.debug(--------task is over);return hello supplyAsync;}, executorService);log.debug(future.get());executorService.shutdown();} }输出 CompletableFuture 之通用异步编程 从 Java8 开始引入了 CompletableFuture它是 Future 的功能增强版减少阻塞和轮询可以传入回调对象当异步任务完成或者发生异常时自动调用回调对象的回调方法。 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {CompletableFuture.supplyAsync(() - {System.out.println(Thread.currentThread().getName() ----come in);int result ThreadLocalRandom.current().nextInt(10);try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(----1秒钟后出结果 result);return result;}).whenComplete((v, e) - {if(e null) {System.out.println(----计算完成更新系统UpdateValue v);}}).exceptionally(e - {e.printStackTrace();System.out.println(异常情况 e.getCause() \t e.getMessage());return null;});System.out.println(Thread.currentThread().getName() 线程先去忙其他任务);} }执行结果 没有发生异常为什么没有执行 whenComplete 中的逻辑 Fork/Join 线程池中的线程类似于守护线程由于主线程执行速度过快先执行结束导致 Fork/Join 线程池被关闭。 解决方法 可以让主线程不要立刻结束否则 CompletableFuture 默认使用的线程池会立刻关闭暂停 3 秒钟主线程。使用自定义线程池 public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {ExecutorService pool Executors.newFixedThreadPool(3);CompletableFuture.supplyAsync(() - {System.out.println(Thread.currentThread().getName() ----come in);int result ThreadLocalRandom.current().nextInt(10);try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(----1秒钟后出结果 result);return result;}, pool).whenComplete((v, e) - {if(e null) {System.out.println(----计算完成更新系统UpdateValue: v);}}).exceptionally(e - {e.printStackTrace();System.out.println(异常情况 e.getCause() \t e.getMessage());return null;});System.out.println(Thread.currentThread().getName() 线程先去忙其他任务);pool.shutdown();} }输出 whenComplete 方法 public CompletableFutureT whenComplete(BiConsumer? super T, ? super Throwable action) {return uniWhenCompleteStage(null, action); }传入的参数是一个 BiConsumer 函数接口BiConsumer 接口可以接收两个参数其中第一个参数为上一步中产生的结果第二个参数为上一步代码执行过程中产生的异常。 exceptionally 方法 public CompletableFutureT exceptionally(FunctionThrowable, ? extends T fn) {return uniExceptionallyStage(fn); }如果 CompletableFuture 在执行时发生异常则执行 exceptionally 中的逻辑并返回新的 CompletableFuture 代码实例如下当产生的随机数大于 2触发异常执行 exceptionally 中的逻辑 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {ExecutorService pool Executors.newFixedThreadPool(3);CompletableFuture.supplyAsync(() - {System.out.println(Thread.currentThread().getName() ----come in);int result ThreadLocalRandom.current().nextInt(10);try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(----1秒钟后出结果 result);if(result 2) {int i 1 / 0;}return result;}, pool).whenComplete((v, e) - {if(e null) {System.out.println(----计算完成更新系统UpdateValue: v);}}).exceptionally(e - {e.printStackTrace();System.out.println(异常情况 e.getCause() \t e.getMessage());return null;});System.out.println(Thread.currentThread().getName() 线程先去忙其他任务);pool.shutdown();} }输出 CompletableFuture 优点 异步任务结束时会自动回调某个对象的方法主线程设置好回调后不再关心异步任务的执行异步任务之间可以顺序执行异步任务出错时会自动回调某个对象的方法 案例精讲 - 从电商网站的比价需求说开去 函数式接口 函数式接口名称方法名称参数返回值Runnablerun无参数无返回值Functionapply1 个参数有返回值Consumeraccept1 个参数无返回值Supplierget无参数有返回值BiConsumeraccept2 个参数无返回值 业务需求 业务需求说明 电商网站比价需求分析 需求说明 同一款产品同时搜索出同款产品在各大电商平台的售价同一款产品同时搜索出本产品在同一个电商平台下各个入驻卖家售价是多少 输出返回 出来结果希望是同款产品的在不同地方的价格清单列表返回一个List 例如《Mysql》 in jd price is 88.05 《Mysql》 in taobao price is 90.43 解决方案对比同一个产品在各个平台上的价格要求获得一个清单列表 step by step按部就班查完淘宝查京东查完京东查天猫…all in万箭齐发一口气多线程异步任务同时查询 代码实现 public class CompletableFutureMallDemo {static ListNetMall list Arrays.asList(new NetMall(jd),new NetMall(dangdang),new NetMall(taobao));/*** 一家一家的查* param list* param productName* return*/public static ListString getPrice(ListNetMall list, String productName) {return list.stream().map(netMall -String.format(productName in %s price is %.2f,netMall.getNetMallName(),netMall.calPrice(productName))).collect(Collectors.toList());}public static ListString getPriceByCompletableFuture(ListNetMall list, String productName) {return list.stream().map(netMall -CompletableFuture.supplyAsync(() - String.format(productName in %s price is %.2f,netMall.getNetMallName(),netMall.calPrice(productName)))).collect(Collectors.toList()).stream().map(s - s.join()).collect(Collectors.toList());}public static void main(String[] args) {long startTime System.currentTimeMillis(); // ListString list1 getPrice(list, mysql);ListString list1 getPriceByCompletableFuture(list, mysql);for (String element : list1) {System.out.println(element);}long endTime System.currentTimeMillis();System.out.println(----costTime: (endTime - startTime) 毫秒);} }AllArgsConstructor class NetMall {Getterprivate String netMallName;public double calPrice(String productName) {try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}return ThreadLocalRandom.current().nextDouble() * 2 productName.charAt(0);} } 普通方式查询即调用 getPrice() 方法 采用 CompletableFuture 方式查询即调用 getPriceByCompletableFuture 方法 CompletableFuture 常用方法 获得结果和触发计算 获取结果 public T get() throws InterruptedException, ExecutionException {// ... }public T get(long timeout, TimeUnit unit)throws InterruptedException, ExecutionException, TimeoutException {// ... }// 和get一样的作用只是不需要抛出异常 public T join() {// ... }// 计算完成就返回正常值否则返回备胎值传入的参数立即获取结果不阻塞 public T getNow(T valueIfAbsent) {// ... }主动触发计算 // 是否打断 get 方法立即返回括号值 public boolean complete(T value)Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {CompletableFutureString future CompletableFuture.supplyAsync(() - {try {TimeUnit.SECONDS.sleep(2);} catch (InterruptedException e) {throw new RuntimeException(e);}return abc;});try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(future.getNow(xxx));System.out.println(future.complete(completeValue) \t future.join());} }输出 如果主线程中睡够 2 秒再去获取输出结果 对计算结果进行处理 thenApply 计算结果存在依赖关系两个线程串行化由于存在依赖关系当前步骤出错不再执行下一步当前步骤有异常的话就停止运行。 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {ExecutorService pool Executors.newFixedThreadPool(3);CompletableFuture.supplyAsync(() - {try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(111);return 1;}, pool).thenApply(f - {System.out.println(222);return f 2;}).thenApply(f - {System.out.println(333);return f 3;}).whenComplete((v, e) - {if(e null) {System.out.println(----计算结果 v);}}).exceptionally(e - {e.printStackTrace();;System.out.println(e.getMessage());return null;});System.out.println(Thread.currentThread().getName() 线程先去忙其他任务);} }输出 如下若是在第二步执行过程中出错程序将退出运行。 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {ExecutorService pool Executors.newFixedThreadPool(3);CompletableFuture.supplyAsync(() - {try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(111);return 1;}, pool).thenApply(f - {int i 1 / 0;System.out.println(222);return f 2;}).thenApply(f - {System.out.println(333);return f 3;}).whenComplete((v, e) - {if(e null) {System.out.println(----计算结果 v);}}).exceptionally(e - {e.printStackTrace();;System.out.println(e.getMessage());return null;});System.out.println(Thread.currentThread().getName() 线程先去忙其他任务);pool.shutdown();} }输出结果 handle 计算结果存在依赖关系两个线程串行化有异常也可以继续向下运行根据带的异常参数可以进一步处理 如下代码中步骤 2 中出错步骤 3 使用 handle 进行处理 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {ExecutorService pool Executors.newFixedThreadPool(3);CompletableFuture.supplyAsync(() - {try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(111);return 1;}, pool).thenApply(f- {int i 1 / 0;System.out.println(222);return f 2;}).handle((f, e) - {System.out.println(333);return f 3;}).whenComplete((v, e) - {if(e null) {System.out.println(----计算结果 v);}}).exceptionally(e - {e.printStackTrace();;System.out.println(e.getMessage());return null;});System.out.println(Thread.currentThread().getName() 线程先去忙其他任务);pool.shutdown();} }输出结果 步骤 3 可以正常执行但是由于步骤 2 中出错最终会执行 exceptionally 中的逻辑 对计算结果进行消费 thenAccept 接收任务的处理结果并消费处理无返回结果 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {CompletableFuture.supplyAsync(() - {return 1;}).thenApply(f - {return f 2;}).thenApply(f - {return f 3;}).thenAccept(r - {System.out.println(r);});} }输出 对比补充 theRun(Runnable runnable)任务 A 执行完执行任务 B并且 B 不需要 A 的结果theAccept(Consumer action)任务 A 执行完执行任务 BB 需要 A 的结果但是任务 B 无返回值thenApply(Function fn)任务 A 执行完执行任务 BB 需要 A 的结果同时任务 B 有返回值 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException {System.out.println(CompletableFuture.supplyAsync(() - resultA)// 任务 A 执行完执行任务 B并且 B 不需要 A 的结果.thenRun(() - {}).join());System.out.println(--------------------------------);System.out.println(CompletableFuture.supplyAsync(() - resultA)// 任务 A 执行完执行任务 BB 需要 A 的结果但是任务 B 无返回值.thenAccept(r - {System.out.println(r);}).join());System.out.println(--------------------------------);System.out.println(CompletableFuture.supplyAsync(() - resultA)// 任务 A 执行完执行任务 BB 需要 A 的结果同时任务 B 有返回值.thenApply(r - r resultB).join());} }输出结果 CompletableFuture 和线程池说明 theRun 和 theRunAsync 有什么区别 没有传入自定义线程池都使用默认线程池 ForkJoinPool传入了一个自定义线程池如果执行第一个任务的时候传入了一个自定义线程池 调用 theRun 方法执行第二个任务时则第二个任务和第一个任务是共用同一个线程池调用 theRunAsync 执行第二个任务时则第一个人任务使用的是你自己传入的线程池第二个任务使用的是 ForkJoinPool 线程池 有可能处理太快系统优化切换原则直接使用 main 线程处理 其他如thenAccept 和 thenAcceptAsyncthenApply 和 thenApplyAsync 等它们之间的区别也是同理。 使用 theRun 方法且未使用自定义线程池 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException, TimeoutException {CompletableFutureVoid future CompletableFuture.supplyAsync(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(1号任务\t Thread.currentThread().getName());return abcd;}).thenRun(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(2号任务\t Thread.currentThread().getName());}).thenRun(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(3号任务\t Thread.currentThread().getName());}).thenRun(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(4号任务\t Thread.currentThread().getName());});System.out.println(future.get(2L, TimeUnit.SECONDS));} }输出结果 使用 theRunAsync 方法且未使用自定义线程池与使用 theRun 方法且未使用自定义线程池情况一样 使用 theRun 方法且使用自定义线程池 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException, TimeoutException {ExecutorService pool Executors.newFixedThreadPool(3);CompletableFutureVoid future CompletableFuture.supplyAsync(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(1号任务\t Thread.currentThread().getName());return abcd;}, pool).thenRun(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(2号任务\t Thread.currentThread().getName());}).thenRun(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(3号任务\t Thread.currentThread().getName());}).thenRun(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(4号任务\t Thread.currentThread().getName());});System.out.println(future.get(2L, TimeUnit.SECONDS));pool.shutdown();} }输出结果 使用 theRunAsync 方法且未使用自定义线程池 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException, TimeoutException {ExecutorService pool Executors.newFixedThreadPool(3);CompletableFutureVoid future CompletableFuture.supplyAsync(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(1号任务\t Thread.currentThread().getName());return abcd;}, pool).thenRunAsync(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(2号任务\t Thread.currentThread().getName());}).thenRunAsync(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(3号任务\t Thread.currentThread().getName());}).thenRunAsync(() - {try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(4号任务\t Thread.currentThread().getName());});System.out.println(future.get(2L, TimeUnit.SECONDS));pool.shutdown();} }输出结果 对计算速度进行选用 applyToEither 谁快用谁 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException, TimeoutException {CompletableFutureString planA CompletableFuture.supplyAsync(() - {System.out.println(A come in);try {TimeUnit.SECONDS.sleep(2);} catch (InterruptedException e) {throw new RuntimeException(e);}return planA;});CompletableFutureString planB CompletableFuture.supplyAsync(() - {System.out.println(B come in);try {TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {throw new RuntimeException(e);}return planB;});CompletableFutureString result planA.applyToEither(planB, f - {return f is winer;});System.out.println(Thread.currentThread().getName() \t---- result.join());} }输出结果 对计算结果进行合并 thenCombine 两个 CompletionStage 任务都完成后最终把两个任务的结果一起交给 thenCombine 来处理。先完成的先等着等待其他分支任务结束。 Slf4j(topic c.CompletableFutureDemo) public class CompletableFutureDemo {public static void main(String[] args) throws ExecutionException, InterruptedException, TimeoutException {CompletableFutureInteger future1 CompletableFuture.supplyAsync(() - {System.out.println(Thread.currentThread().getName() \t----启动);try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {throw new RuntimeException(e);}return 10;});CompletableFutureInteger future2 CompletableFuture.supplyAsync(() - {System.out.println(Thread.currentThread().getName() \t----启动);try {TimeUnit.SECONDS.sleep(2);} catch (InterruptedException e) {throw new RuntimeException(e);}return 20;});CompletableFutureInteger combine future1.thenCombine(future2, (x, y) - {System.out.println(-----开始两个结果的合并);return x y;});System.out.println(combine.join());} }输出结果
http://www.hkea.cn/news/14264047/

相关文章:

  • 青岛网站推广企业怎么做旅游网站框架
  • 网站制作报价优惠电商运营公司
  • 宁波网站模板哪家性价比高兖州城乡建设局网站
  • 云南省建设厅网站网站建设用到什么软件
  • 国外好用的网站厦门专业做优化的公司
  • 网站建设好不好学古侯子 wordpress
  • 什么类型网站可以发外链的网站或平台有哪些
  • 做网站上传的图片显示变形网站建设专业介绍
  • 西安 网站空间网站换域名了怎么办seo
  • 怎么建设一个网站wordpress卢松松主题
  • 启迪网站建设域名注册服务网站哪个好
  • php网站标题修改集团网站改版方案
  • 苏州建网站的公司一站式服务外贸网站模板推荐
  • 的广州建网站的公司网站建设dw 什么软件
  • 如何写网站代码是什么原因网站水军怎么做
  • 这个网站中有网名做会计的吗 了解一下毕业设计做啥网站好
  • 怎样制作表白网站wordpress调用昵称
  • 周口seo优化网站文章优化技巧
  • 网站建设小程序公众号推广开发网站开发的结构图
  • 外链提交网站网站建设理论基础
  • 网站建设团队介绍制作app免费网站模板下载
  • 池州哪里做网站计算机软件开发网站建设取什么名字
  • 销售推广做那个网站做网站建
  • 吉安网站建设jajjjc搜索引擎优化自然排名的区别
  • wordpress自动排版的编辑器宁波外包seo服务
  • 技术支持东莞网站建设可以免费发布信息的网站有哪些
  • 做宣传的视频网站有哪些微信公众号如何开通
  • 广州做网络服装的网站建设wordpress永久免费
  • 一个空间能放几个网站云南网站开发报价
  • 深喉咙企业网站帮助备案网站名称大全