您现在的位置是:课程教程文章
java中CompletableFuture方式是什么
2023-12-13 23:56课程教程文章 人已围观
-
深入理解java内存模型JMM与内存屏障高并发
深入理解java内存模型JMM与内存屏障高并发需要领取课前资料的同学可以加群联系萌萌或者艾琳老师领取资料 给你开通直... -
JavaScript的超集TypeScript教程
JavaScript的超集TypeScript教程课程购买咨询和资料获取请加老师微信 2020363447 TypeScript扩展了JavaScript的语法,... -
2022 JavaScript零基础入学宝典
2022 JavaScript零基础入学宝典大厂前端大咖递进式分段教学, js初学者必修课程,师出此门者皆得大厂高薪... -
Laya+Java全栈开发
Laya+Java全栈开发...
说明
1、JDK 8中引入了 CompletableFuture 类,实现了Future和CompletionStage接口.
为异步编程提供了一些列方法,如supplyAsync、runAsync和thenApplyAsync等。
2、功能是可以让两个或者多个进行运算来产生结果。
实例
/** *@authormghio *@since2021-08-01 */ publicclassCompletableFutureDemo{ publicstaticCompletableFuture<String>doOneThing(){ returnCompletableFuture.supplyAsync(()->{ try{ Thread.sleep(2000); }catch(InterruptedExceptione){ e.printStackTrace(); } return"doOneThing"; }); } publicstaticCompletableFuture<String>doOtherThing(Stringparameter){ returnCompletableFuture.supplyAsync(()->{ try{ Thread.sleep(2000); }catch(InterruptedExceptione){ e.printStackTrace(); } returnparameter+""+"doOtherThing"; }); } publicstaticvoidmain(String[]args)throwsExecutionException,InterruptedException{ StopWatchstopWatch=newStopWatch("CompletableFutureDemo"); stopWatch.start(); //异步执行版本 testCompletableFuture(); stopWatch.stop(); System.out.println(stopWatch); } privatestaticvoidtestCompletableFuture()throwsInterruptedException,ExecutionException{ //先执行doOneThing任务,后执行doOtherThing任务 CompletableFuture<String>resultFuture=doOneThing().thenCompose(CompletableFutureDemo::doOtherThing); //获取任务结果 StringdoOneThingResult=resultFuture.get(); //获取执行结果 System.out.println("DoOneThingandDoOtherThingexecutefinished.result="+doOneThingResult); } }
以上就是java中CompletableFuture方式的介绍,希望对大家有所帮助。更多Java学习指路:Java基础
本教程操作环境:windows7系统、java10版,DELL G3电脑。
课程教程:java中CompletableFuture方式是什么上一篇:新手如何购买代理ip呢?
下一篇:没有了