8
4

1 に答える 1

9

ForkJoinPool実装しExecutorます。

したがって、次のようにコードを記述できます。

int threadCount = 3;
ForkJoinPool myPool = new ForkJoinPool(threadCount);
CompletableFuture cf = CompletableFuture.supplyAsync(mySup, myPool);
于 2016-04-12T10:29:41.973 に答える