fixedthreadpool专题

FixedThreadPool,submit,execute,Callable,Runnable实例

一般使用线程池执行任务都是调用的execute方法,这个方法定义在Executor接口中: public interface Executor {     void execute(Runnable command); } 这个方法是没有返回值的,而且只接受Runnable。 那么像得到线程的返回值怎嘛办呢? 在ExecutorService接口中能找到这个方法: <T> Future<T