java多线程Future.cancel(true)取消线程,线程还是会执行catch与finally里面的代码,只要资源回收的代码没有乱写,不必担心资源回收问题

java多线程Future.cancel(true)取消线程,线程还是会执行catch与finally里面的代码,只要资源回收的代码没有乱写,不必担心资源回收问题java多线程Future.cancel引发的疑问

1.代码展示

public static void main(String[] args) {
        //定义线程池
        ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(10, 30, 30, TimeUnit.SECONDS, new LinkedBlockingQueue<>());
        //信号量定义
        CountDownLatch countDownLatch = new CountDownLatch(2);
        //提交异步任务1
        Future<Integer> future1 = threadPoolExecutor.submit(() -> {
            try {
                System.out.println("任务1获取连接");
                Thread.sleep(1000);
                System.out.println("任务1开始处理查询结果");
                return 1 ;
            } catch (Exception e){
                System.out.println("任务1catch="+e.getMessage());
                return null ;
            }finally {
                //信号量递减
                countDownLatch.countDown();
                System.out.println("任务1归还连接");
            }
        });
        //提交异步任务2
        Future<Integer> future2 = threadPoolExecutor.submit(() -> {
            try {
                System.out.println("任务2获取连接");
                Thread.sleep(20000);
                System.out.println("任务2开始处理查询结果");
                return 2 ;
            } catch (Exception e){
                System.out.println("任务2catch="+e.getMessage());
                return null ;
            }finally {
                //信号量递减
                countDownLatch.countDown();
                System.out.println("任务2归还连接");
            }
        });

        //等待都执行完成
        try {
            countDownLatch.await(2, TimeUnit.SECONDS);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        System.out.println("*****************************开始打印执行结果*********************************");

        if(future1.isDone()){
            Integer integer = null;
            try {
                integer = future1.get();
            } catch (Exception e) {
                e.printStackTrace();
            }
            System.out.println("任务1执行结果="+integer);
        }else {
            System.out.println("任务1执行结果=null");
            future1.cancel(true);
        }

        if(future2.isDone()){
            Integer integer = null;
            try {
                integer = future2.get();
            } catch (Exception e) {
                e.printStackTrace();
            }
            System.out.println("任务2执行结果="+integer);
        }else {
            System.out.println("任务2执行结果=null");
            future2.cancel(true);
        }
    }

2.执行结果

任务1获取连接
任务2获取连接
任务1开始处理查询结果
任务1归还连接
*****************************开始打印执行结果*********************************
任务1执行结果=1
任务2执行结果=null
任务2catch=sleep interrupted
任务2归还连接

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/38474.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注