摘要: 1、ExecutorService:是一个接口,继承了Executor:public interface ExecutorService extends Executor {}2、Executor:而Executor亦是一个接口,该接口只包含了一个方法:void execute(Runnable command);3、Executors:该类是一个辅助类,此包中所定义的 Executor、ExecutorService、ScheduledExecutorService、ThreadFactory 和 Callable 类的工厂和实用方法。此类支持以下各种方法:• 创建并返回设置有常用配置字符串 阅读全文
posted @ 2013-09-17 19:21 艾泽拉斯的太阳 阅读(48292) 评论(0) 推荐(3) 编辑