91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中的CompletableFuture怎么用

發布時間:2022-05-16 15:17:02 來源:億速云 閱讀:200 作者:iii 欄目:大數據

這篇“java中的CompletableFuture怎么用”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“java中的CompletableFuture怎么用”文章吧。

說明

1、JDK 8中引入了 CompletableFuture 類,實現了Future和CompletionStage接口.

為異步編程提供了一些列方法,如supplyAsync、runAsync和thenApplyAsync等。

2、功能是可以讓兩個或者多個進行運算來產生結果。

實例

/**
 * @author mghio
 * @since 2021-08-01
 */
public class CompletableFutureDemo {
 
  public static CompletableFuture<String> doOneThing() {
    return CompletableFuture.supplyAsync(() -> {
      try {
        Thread.sleep(2000);
      } catch (InterruptedException e) {
        e.printStackTrace();
      }
      return "doOneThing";
    });
  }
 
  public static CompletableFuture<String> 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();
 
    // 異步執行版本
    testCompletableFuture();
 
    stopWatch.stop();
    System.out.println(stopWatch);
  }
 
  private static void testCompletableFuture() throws InterruptedException, ExecutionException {
    // 先執行 doOneThing 任務,后執行 doOtherThing 任務
    CompletableFuture<String> resultFuture = doOneThing().thenCompose(CompletableFutureDemo::doOtherThing);
 
    // 獲取任務結果
    String doOneThingResult = resultFuture.get();
 
    // 獲取執行結果
    System.out.println("DoOneThing and DoOtherThing execute finished. result = " + doOneThingResult);
  }
 
}

以上就是關于“java中的CompletableFuture怎么用”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大埔县| 长春市| 佛山市| 肇庆市| 铜川市| 罗田县| 开化县| 军事| 读书| 吴江市| 南郑县| 金坛市| 衡水市| 大方县| 秀山| 永康市| 陆河县| 平利县| 锡林浩特市| 阿图什市| 乌拉特中旗| 宜宾县| 顺义区| 绍兴县| 阳城县| 循化| 和田县| 琼结县| 佛学| 仁寿县| 原阳县| 辉县市| 陕西省| 绥宁县| 彩票| 泌阳县| 印江| 虎林市| 吴旗县| 河曲县| 金乡县|