取消正在执行的线程

Future调用cancel(true)后,仍然在执行?

开一个线程,执行一个任务:计算1000000033是不是质数,2秒后取消这个任务。
真的是:不试不知道,一试吓一跳!!!

public class FutureTest {

    public static void main(String[] args){
        ExecutorService threadPool = Executors.newSingleThreadExecutor();
        Future<Boolean> future = threadPool.submit(new Callable<Boolean>() {
            @Override
            public Boolean call()throws Exception {
                // i < num 让任务有足够的运行时间
                long num = 1000000033L;
                for (long i = 2; i < num; i++) {

                    if (num % i == 0) {
                        return false;
                    } else if (i % 100000000 == 0) {
                        System.out.print("i=" + i + "  ");
                        if (i % 600000000 == 0) {
                            System.out.println("\n");
                        }
                    }
                }
                return true;
            }
        });
        threadPool.shutdown(); // 发送关闭线程池的指令
        cancelTask(future, 2000); //2秒后取消任务

        try {
            boolean is = future.get();
            System.out.println("--------------------------------------------is:" + is + "-----------------------");
        } catch (CancellationException ex) {
            System.err.println("\n\n\n任务被取消\n\n\n");
        } catch (InterruptedException ex) {
            System.err.println("当前线程被中断");
        } catch (ExecutionException ex) {
            System.err.println("任务执行出错");
        }


    }


    private static void cancelTask(Future<?> future, int delay) {
        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    Thread.sleep(delay);
                    future.cancel(true); // 取消与 future 关联的正在运行的任务
                } catch (InterruptedException ex) {
                    ex.printStackTrace(System.err);
                }
            }
        }).start();
    }
}

完整的取消方法

在for循环里面添加判断:

                    if (Thread.currentThread().isInterrupted()) { // 任务被取消
                        System.out.println("PrimerTask.call: 你取消我干啥?");
                        return false;
                    }

完整方法如下:

public class FutureTest {

    public static void main(String[] args){
        ExecutorService threadPool = Executors.newSingleThreadExecutor();
        Future<Boolean> future = threadPool.submit(new Callable<Boolean>() {
            @Override
            public Boolean call()throws Exception {
                // i < num 让任务有足够的运行时间
                long num = 1000000033L;
                for (long i = 2; i < num; i++) {
                    if (Thread.currentThread().isInterrupted()) { // 任务被取消
                        System.out.println("PrimerTask.call: 你取消我干啥?");
                        return false;
                    }
                    if (num % i == 0) {
                        return false;
                    } else if (i % 100000000 == 0) {
                        System.out.print("i=" + i + "  ");
                        if (i % 600000000 == 0) {
                            System.out.println("\n");
                        }
                    }
                }
                return true;
            }
        });
        threadPool.shutdown(); // 发送关闭线程池的指令
        cancelTask(future, 2000); //2秒后取消任务

        try {
            boolean is = future.get();
            System.out.println("--------------------------------------------is:" + is + "-----------------------");
        } catch (CancellationException ex) {
            System.err.println("\n\n\n任务被取消\n\n\n");
        } catch (InterruptedException ex) {
            System.err.println("当前线程被中断");
        } catch (ExecutionException ex) {
            System.err.println("任务执行出错");
        }


    }


    private static void cancelTask(Future<?> future, int delay) {
        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    Thread.sleep(delay);
                    future.cancel(true); // 取消与 future 关联的正在运行的任务
                } catch (InterruptedException ex) {
                    ex.printStackTrace(System.err);
                }
            }
        }).start();
    }
}

看下运行效果:

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

zhangjin1120

可靠的文章费时费力,希望支持

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值