首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
fixedthreadpool专题
FixedThreadPool,submit,execute,Callable,Runnable实例
一般使用线程池执行任务都是调用的execute方法,这个方法定义在Executor接口中: public interface Executor { void execute(Runnable command); } 这个方法是没有返回值的,而且只接受Runnable。 那么像得到线程的返回值怎嘛办呢? 在ExecutorService接口中能找到这个方法: <T> Future<T
阅读更多...