为什么这段代码按顺序执行?

时间:2013-09-10 14:59:17

标签: java multithreading

代码如下:

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;

public class ThreadTest {

    private static int counter = 0; 
    private static ExecutorService executorService = Executors.newCachedThreadPool();
    private static List<Integer> intValues = new ArrayList<Integer>();

    public static void main(String args[]){
        for(int counter = 0; counter < 10; ++counter){
            intValues.add(testCallback());
        }

        for(int i : intValues){
            System.out.println(i);
        }

        System.exit(0);
    }

    public static Integer testCallback() {

        Future<Integer> result = executorService.submit(new Callable<Integer>() {
            public Integer call() throws Exception {
                counter += 1;
                Thread.sleep(500);
                return counter;
            }
        });

        try {
            return result.get();
        } catch (InterruptedException e) {
            e.printStackTrace();
        } catch (ExecutionException e) {
            e.printStackTrace();
        }

        return null;
    }
}

输出:

1
2
3
4
5
6
7
8
9
10

此程序运行大约需要5秒钟。我试图在一个单独的线程中执行多个testCallback方法的调用,所以我希望这个方法同时在10个线程中运行,每个线程使用大约500毫秒的时间。所以我总是将程序运行到&lt; 1秒。

为什么不同时在单独的线程中调用计数器?

1 个答案:

答案 0 :(得分:10)

result.get();

这是一个等待任务完成的阻塞调用。

因此,您需要等待每个任务完成才能开始下一个任务。