這篇文章主要講解了“java中的CompletableFuture方式是什么”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“java中的CompletableFuture方式是什么”吧!
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供青岡網(wǎng)站建設(shè)、青岡做網(wǎng)站、青岡網(wǎng)站設(shè)計、青岡網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、青岡企業(yè)網(wǎng)站模板建站服務(wù),十余年青岡做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
說明
1、JDK 8中引入了 CompletableFuture 類,實(shí)現(xiàn)了Future和CompletionStage接口,為異步編程提供了一些列方法,如supplyAsync、runAsync和thenApplyAsync等。
2、功能是可以讓兩個或者多個進(jìn)行運(yùn)算來產(chǎn)生結(jié)果。
實(shí)例
/** * @author mghio * @since 2021-08-01 */ public class CompletableFutureDemo { public static CompletableFuturedoOneThing() { return CompletableFuture.supplyAsync(() -> { try { Thread.sleep(2000); } catch (InterruptedException e) { e.printStackTrace(); } return "doOneThing"; }); } public static CompletableFuture doOtherThing(String parameter) { return CompletableFuture.supplyAsync(() -> { try { Thread.sleep(2000); } catch (InterruptedException e) { e.printStackTrace(); } return parameter + " " + "doOtherThing"; }); } public static void main(String[] args) throws ExecutionException, InterruptedException { StopWatch stopWatch = new StopWatch("CompletableFutureDemo"); stopWatch.start(); // 異步執(zhí)行版本 testCompletableFuture(); stopWatch.stop(); System.out.println(stopWatch); } private static void testCompletableFuture() throws InterruptedException, ExecutionException { // 先執(zhí)行 doOneThing 任務(wù),后執(zhí)行 doOtherThing 任務(wù) CompletableFuture resultFuture = doOneThing().thenCompose(CompletableFutureDemo::doOtherThing); // 獲取任務(wù)結(jié)果 String doOneThingResult = resultFuture.get(); // 獲取執(zhí)行結(jié)果 System.out.println("DoOneThing and DoOtherThing execute finished. result = " + doOneThingResult); } }
感謝各位的閱讀,以上就是“java中的CompletableFuture方式是什么”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對java中的CompletableFuture方式是什么這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!