摘要: 一、基础 1.1 类图 1.1.1 Executor public interface Executor { //提交一个实现了Runnable的任务,异步执行 void execute(Runnable command); } 1.1.2 ExecutorService 以下对于方法的描述全是基于 阅读全文