A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

public class Demo {
        public static void main(String[] args) {
                // 创建一个线程池
                ExecutorService service = Executors.newCachedThreadPool();
                // 穿件一个Future对象接受线程返回值
                Future<Integer> result = service.submit(new Callable() {
                        int sum = 0;

                        @Override
                        public Object call() throws Exception {
                                for (int i = 0; i <= 100; i++) {
                                        sum += i;
                                }
                                return sum;
                        }
                });

                try {
                        System.out.println("最后的结果是:" + result.get());
                } catch (InterruptedException e) {
                        e.printStackTrace();
                } catch (ExecutionException e) {
                        e.printStackTrace();
                }
                // 关闭线程池
                service.shutdown();
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马