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…
线程池怎么实现的,核心参数讲一讲? Executors是线程池的工厂类,通过调用它的静态方法如下: Executors.newCachedThreadPool(); Executors.newFixedThreadPool(); 可返回一个线程池.这些静态方法统一返回一个ThreadPoolExecutor,只是参数不同. public ThreadPoolExecutor (int corePoolSize, int maximumPoolSize, long keepAliveTime, T…