如果我有一个ExecutorService
可以提供 Runnable 任务的任务,我可以选择一个并中断它吗?
我知道我可以取消返回的 Future (这里也提到:how-to-interrupt-executors-thread),但我怎样才能提出InterruptedException
. Cancel 似乎没有这样做(事件虽然应该通过查看源代码,但 OSX 实现可能不同)。至少这个片段不会打印“它!” 也许我误解了一些东西,而不是自定义可运行对象获得异常?
public class ITTest {
static class Sth {
public void useless() throws InterruptedException {
Thread.sleep(3000);
}
}
static class Runner implements Runnable {
Sth f;
public Runner(Sth f) {
super();
this.f = f;
}
@Override
public void run() {
try {
f.useless();
} catch (InterruptedException e) {
System.out.println("it!");
}
}
}
public static void main(String[] args) throws InterruptedException, ExecutionException {
ExecutorService es = Executors.newCachedThreadPool();
Sth f = new Sth();
Future<?> lo = es.submit(new Runner(f));
lo.cancel(true);
es.shutdown();
}
}