1. Executor 该接口内只有一个接口方法 :该方法的目的就是执行指定的 Runnable (但会不会执行,或者会不会立马执行,则不一定.因为要取决于整个线程池的状态) Executor 中文的翻译就是执行者.执行器的意思 public interface Executor { /** * Executes the given command at some time in the future. The command * may execute in a new thread, in…