一、FixedThreadPool 当我们使用Executors创建FixedThreadPool时,其对应的构造方法为: public static ExecutorService newFixedThreadPool(int nThreads) { return new ThreadPoolExecutor(nThreads, nThreads, 0L, TimeUnit.MILLISECONDS