java基础 Excutor
Excutor是java自带的一个多线程框架,使用这个框架 可以让程序员无管理线程的具体生命周期。 /** * 测试类,重复了一百次添加新线程 */public class ExcutorTest { public static void main(String[] args) throws InterruptedException{ Server...