# java-actual-combat **Repository Path**: pangzidemeng/java-actual-combat ## Basic Information - **Project Name**: java-actual-combat - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-10 - **Last Updated**: 2021-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # java 实战 # hehe ## chapter-16 CompletableFuture **需求:** _查询多个商店,获取商店的产品的价格,在获取商店打折券。计算出实际的价格。_ 有两种效果 ```mermaid graph TD A(开始)-->B[获取商品价格] B-->C[获取打折率] C-->D[得到最终的计算结果] D-->E(结束) ``` ```mermaid graph TD A(开始)-->B[获取商品价格] A-->C[获取打折率] B-->D[得到最终的计算结果] C-->D D-->E(结束) ``` ​