最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

CompletableFuture 打桌球的應(yīng)用

2022-08-12 13:55 作者:限量版范兒  | 我要投稿

CompletableFuture 使用

?

?

@Testpublic void billiardTest() throws Exception { ? // 創(chuàng)建點(diǎn)外賣線程: ? CompletableFuture<Boolean> takeaway = CompletableFuture.supplyAsync(() -> { ? ? ? System.out.println("開始點(diǎn)外賣"); ? ? ? try { ? ? ? ? ? System.out.println("外賣 => 下單"); ? ? ? ? ? Thread.sleep(1000); ? ? ? ? ? System.out.println("外賣 => 店家接單開始做飯"); ? ? ? ? ? Thread.sleep(10000); ? ? ? ? ? System.out.println("外賣 => 做飯完成騎手接單"); ? ? ? ? ? Random random = new Random(); ? ? ? ? ? int time = random.nextInt(5); ? ? ? ? ? Thread.sleep(time * 1000); ? ? ? ? ? System.out.println("外賣 => 外賣已送達(dá)"); ? ? ? } catch (InterruptedException e) { ? ? ? ? ? e.printStackTrace(); ? ? ? } ? ? ? return true; ? }); ? //創(chuàng)建打球線程 ? CompletableFuture<Boolean> billiard = takeaway.supplyAsync(() -> { ? ? ? System.out.println("開始打桌球"); ? ? ? //直接用線程的返回值,不用中間變量,防止變量被篡改 ? ? ? while (!takeaway.getNow(false)) { ? ? ? ? ? try { ? ? ? ? ? ? ? System.out.println("打球 => 擺球"); ? ? ? ? ? ? ? Thread.sleep(1000); ? ? ? ? ? ? ? System.out.println("打球 => 打球"); ? ? ? ? ? ? ? Thread.sleep(5000); ? ? ? ? ? ? ? System.out.println("打球 => 打球結(jié)束確定輸贏"); ? ? ? ? ? } catch (InterruptedException e) { ? ? ? ? ? ? ? e.printStackTrace(); ? ? ? ? ? } ? ? ? } ? ? ? System.out.println("外賣已到,不再打球"); ? ? ? return true; ? }); ? //打球的結(jié)束,依賴外賣,所以這邊只需要看打球是否結(jié)束來(lái)確定是不是開始吃飯 ? billiard.thenAccept((param) -> { ? ? ? System.out.println("開始吃飯"); ? }); ? //主線程可以做其它事 ? while (true) { ? ? ? System.out.println("主線程可以做其它事:" + DateUtil.now()); ? ? ? Thread.sleep(1000); ? } }

鏈接:https://www.dianjilingqu.com/480782.html

CompletableFuture 打桌球的應(yīng)用的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
连南| 仪征市| 上思县| 珲春市| 繁昌县| 开封县| 临潭县| 大关县| 昂仁县| 施甸县| 美姑县| 牙克石市| 衡水市| 东安县| 五河县| 镇巴县| 侯马市| 长丰县| 都昌县| 栖霞市| 昌平区| 措美县| 平顶山市| 乌兰浩特市| 威海市| 鸡西市| 绥德县| 阳信县| 肥乡县| 康定县| 龙井市| 莱州市| 娄底市| 南投市| 株洲市| 甘孜| 确山县| 石泉县| 宁明县| 新邵县| 广昌县|