說明
1、JDK 8中引入了 CompletableFuture 類,實現了Future和CompletionStage接口.
為異步編程提供了一些列方法,如supplyAsync、runAsync和thenApplyAsync等。
2、功能是可以讓兩個或者多個進行運算來產生結果。
實例
/**
* @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 CompletableFuturedoOtherThing(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();
// 異步執行版本
testCompletableFuture();
stopWatch.stop();
System.out.println(stopWatch);
}
private static void testCompletableFuture() throws InterruptedException, ExecutionException {
// 先執行 doOneThing 任務,后執行 doOtherThing 任務
CompletableFutureresultFuture = doOneThing().thenCompose(CompletableFutureDemo::doOtherThing);
// 獲取任務結果
String doOneThingResult = resultFuture.get();
// 獲取執行結果
System.out.println("DoOneThing and DoOtherThing execute finished. result = " + doOneThingResult);
}
}
以上就是java中CompletableFuture方式的介紹,希望對大家有所幫助。更多關于“Java培訓”的問題,歡迎咨詢千鋒教育在線名師。千鋒已有十余年的培訓經驗,課程大綱更科學更專業,有針對零基礎的就業班,有針對想提升技術的好程序員班,高品質課程助力你實現java程序員夢想。