以下是API所说的:
public void execute(Runnable task) Description copied from interface: Executor Executes the given command at some time in the future. The command may execute in a new thread, in a pooled thread, or in the calling
线程,由 Executor 实现决定。
Parameters: task - the runnable task Throws: NullPointerException - if the task is null RejectedExecutionException - if the task cannot be scheduled for execution
ForkJoinPool 已经是 ExecutorService 的实现了?他们在说什么?我怎么知道这种方法的行为?