来自https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html它显示CompletableFuture具有以下thenX方法:
thenAccept(Consumer<? super T> action)
thenApply(Function<? super T,? extends U> fn)
thenRun(Runnable action)
我想知道如果我想将供应商(不接受参数但是返回值)附加到CompletableFuture制作的回调链中该怎么办?