我刚刚开始研究 Java 中的 Futures 和 ScheduledExecutorService,我想知道为什么我的 Callable 没有按我指定的时间表运行。在此示例代码中,可调用对象运行一次,但应用程序永远不会完成,任务也不会再次运行,这是我预期会发生的(我确定问题出在我的预期中)。
Runnables 工作正常;可调用对象似乎永远阻塞,但我不知道为什么......我错过了什么?
谢谢!
public class ExecutorExample {
/**
* @param args
* @throws ExecutionException
* @throws InterruptedException
*/
public static void main(String[] args) throws InterruptedException, ExecutionException {
ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(5);
FutureTask<ArrayList<String>> ft1 = new FutureTask<ArrayList<String>>(new Callable<ArrayList<String>>(){
@Override
public ArrayList<String> call() {
ArrayList<String> stuff = new ArrayList<String>();
for(int i = 0;i<10;i++){
String thing ="Adding " + i + " to result";
stuff.add(thing);
System.out.println(thing);
}
return stuff;
}});
scheduler.scheduleAtFixedRate(ft1, 0, 1, TimeUnit.SECONDS);
System.out.println(ft1.get());
System.out.println(ft1.isDone());
}
}