Java的Future对象调用cancel无法中断正在执行的线程
人品不好 iteye上面问了,但是连帖子都找不到了,真心无语 第二次了,大牛们给说说我这代码啥问题,
按理说ExecutorService的shutDownNow会吧所有正在执行的任务给中断(调用interrupt), 但事实并非如此,是不是
我哪里理解错了,我对已提交的任务返回的Future调用cancel也不行,只有同时shutDownNow和cancel一起调用才可以正常退出R1
package com.thread;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;import java.util.concurrent.Future;import java.util.concurrent.TimeUnit;class R2 implements Runnable { Runnable r; public R2(Runnable r) { this.r = r; } @Override public void run() { try { TimeUnit.SECONDS.sleep(1); } catch (InterruptedException e) { e.printStackTrace(); } synchronized (r) { r.notifyAll(); } System.out.println("R2 over"); }}public class R1 implements Runnable { @Override public void run() { boolean b = false; synchronized (this) { while (!(b = Thread.interrupted())) { try { wait(); System.out.println("R1 awakend"); } catch (InterruptedException e) { System.out.println("InterruptedException, interu:" + b); } } System.out.println("R1 over, interrupted:" + b); } } public static void main(String[] args) throws InterruptedException { ExecutorService exec = Executors.newCachedThreadPool(); Runnable r1 = new R1(); Future<?> f = exec.submit(r1); exec.execute(new R2(r1)); TimeUnit.SECONDS.sleep(2); exec.shutdownNow(); /*boolean ret = f.cancel(true); System.out.println("main cancel:" + ret );*/ }}