java 多线程使用示例(待补充)

1. ExecutorService executorService = Executors.newFixedThreadPool(500); //一次性初始化500个线程
2. executorService.submit(new Bean()); //提交准备执行一个线程
3. //实现Callable接口 不要实现Runnable接口
4. //因为 Callable接口可以try catch 抛出异常 runnable接口不可以
5. //Callable接口有返回值 Runnable接口没有返回值
6. public class Bean implement Callable {
7. @override
8. public Integer call() throws Exception {
9. Integer rtn = 1;
10. // TODO something
11. return rtn;
12. }
13. }

未完。。。

你可能感兴趣的:(java 多线程使用示例(待补充))