supplyAsync 可以支持返回值。
//有返回值
public static void supplyAsync() throws Exception {CompletableFuture<Long> future = CompletableFuture.supplyAsync(() -> {try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {}System.out.println("run end ...");return System.currentTimeMillis();});long time = future.get();System.out.println("time = "+time);
}