final ExecutorService executor = Executors.newFixedThreadPool(1);
final Future<?> future = executor.submit(myRunnable);
executor.shutdown();
if(executor.awaitTermination(10, TimeUnit.SECONDS)) {
System.out.println("task completed");
}else{
System.out.println("Executor is shutdown now");
}
//MyRunnable method is defined as task which I want to execute in a different thread.
这是run
执行程序类的方法:
public void run() {
try {
Thread.sleep(20 * 1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}}
在这里它正在等待20
第二次,但是当我运行代码时它会引发异常:
java.lang.InterruptedException: sleep interrupted
at java.lang.Thread.sleep(Native Method)
我无法关闭破坏Java Executor class
. 这是我的代码流程:
- 使用 Java 执行器类创建了一个新线程来运行一些任务,即用
MyRunnable
executor
等待 10 秒完成任务。- 如果任务已经完成,那么可运行线程也被终止。
- 如果任务未在 10 秒内完成,则
executor
类应终止线程。
除了在最后一个场景中终止任务外,一切正常。我该怎么做?