标签:enc font 集合 设计 executor pack read 对象 设计思考
运行的线程是线程池的核心,被添加的任务需要实现过Runnable接口,主要是保证有run方法。运行时候 对象.run() 。
1 package com.jtfr.MyThreadPool; 2 3 import java.util.List; 4 5 /** 6 * 线程池接口 7 * @author 陈康明 qq:1123181523 8 * @date 2019年2月3日 9 * ENCODEING = "UTF-8" 10 */ 11 public interface IThreadPool { 12 13 /** 14 * 添加单个任务 15 */ 16 void executor(Runnable task); 17 18 /** 19 * 添加多个任务 20 */ 21 void executor(List<Runnable> task); 22 23 /** 24 * 销毁工作线程,保留核心线程。 25 */ 26 void destory(int core); 27 28 /** 29 * 销毁线程池 30 */ 31 void destory(); 32 }
2.
标签:enc font 集合 设计 executor pack read 对象 设计思考
原文地址:https://www.cnblogs.com/jtfr/p/10350238.html