class loops//不知道为什么,停不下来
{
static class LOOP implements Callable<Integer>
{
int c;
LOOP(int c)
{
this.c=c;
}
int n=0;
public Integer call()
{
for(int i=0;i<100000;i++)
n=i;
return n;
}
}
public static void main(String[] args) throws Exception
{
ExecutorService exec=Executors.newCachedThreadPool();
List<Future<Integer>> fc=new ArrayList<Future<Integer>>();
for(int i=0;i<10;i++)
{
fc.add(exec.submit(new LOOP(i)));
}
for(Future<Integer > gc:fc)
{
System.out.println(gc.get());
}
}
}
运行程序后,停不下来