CompletableFuture详解~thenAcceptBoth
生活随笔
收集整理的這篇文章主要介紹了
CompletableFuture详解~thenAcceptBoth
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
使用BiConsumer處理兩個(gè)階段的結(jié)果
上面的例子還可以通過BiConsumer來實(shí)現(xiàn):
static void thenAcceptBothExample() {String original = "Message";StringBuilder result = new StringBuilder();CompletableFuture.completedFuture(original).thenApply(String::toUpperCase).thenAcceptBoth(CompletableFuture.completedFuture(original).thenApply(String::toLowerCase),(s1, s2) -> result.append(s1 + s2));assertEquals("MESSAGEmessage", result.toString()); }總結(jié)
以上是生活随笔為你收集整理的CompletableFuture详解~thenAcceptBoth的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 事实--思维导图笔记
- 下一篇: Frida Android hook