質問する
4337 次
1 に答える
9
ForkJoinPool
実装しExecutor
ます。
したがって、次のようにコードを記述できます。
int threadCount = 3;
ForkJoinPool myPool = new ForkJoinPool(threadCount);
CompletableFuture cf = CompletableFuture.supplyAsync(mySup, myPool);
于 2016-04-12T10:29:41.973 に答える