标签:
public interface Executor{ void executor(Runnable command); }
如上所写,Executor实际上是一个接口,他提供了唯一的接口方法executor(Runnable command)
Java 多线程(2)-Executor
原文地址:http://www.cnblogs.com/CBDoctor/p/5078199.html