博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于线程Thread中断
阅读量:6600 次
发布时间:2019-06-24

本文共 1690 字,大约阅读时间需要 5 分钟。

hot3.png

    public static void main(String[] args) throws Exception {

        Thread test = new Thread(() -> {
            try {
                System.out.println("stateName4:" + Thread.currentThread().getState().name()); // RUNNABLE
                int count = 0;
                while (true) {
//                    if (count++ > 10000) {
//                        System.out.println("success to 10000");
//                        break;
//                    }
                    Thread.sleep(10000);
                }
            } catch (Exception e) {
                if (e instanceof InterruptedException) {
                    // false 当线程调用sleep(),wait(),join()等方法而阻塞,在被打断时会抛出InterruptedException异常,并且打断状态被重置reset
                    System.out.println("state1: " + Thread.currentThread().isInterrupted());

                    // Just to set the interrupt flag (set true)

                    Thread.currentThread().interrupt();
                    System.out.println("state2: " + Thread.currentThread().isInterrupted()); // true

                    // return thread interrupt status and then clearInterrupt (set false)

                    System.out.println("state3: " + Thread.interrupted());
                    System.out.println("state4: " + Thread.currentThread().isInterrupted()); // false

                    System.out.println("stateName5:" + Thread.currentThread().getState().name()); // RUNNABLE

                }
            } finally {
                System.out.println(Thread.currentThread().getName() + "" + (Thread.currentThread().isInterrupted() ? " is interrupted!" : " is not interrupted!"));
                System.out.println("stateName6:" + Thread.currentThread().getState().name()); // RUNNABLE
            }
        });

        // 启动线程

        test.start();
        System.out.println("stateName1:" + test.getState().name()); // RUNNABLE

        // 主线程让出cpu

        Thread.sleep(1000);
        System.out.println("stateName2:" + test.getState().name()); // TIMED_WAITING

        // 打断线程

        test.interrupt();
        System.out.println(test.isInterrupted()); // true

        Thread.sleep(1000);

        System.out.println("stateName3:" + test.getState().name()); // TERMINATED
    }

转载于:https://my.oschina.net/u/2375016/blog/856903

你可能感兴趣的文章
在 macOS 取消了 PPTP 后使用 chnroutes 手动分流
查看>>
JavaScript数组方法之数组合并
查看>>
[聊一聊系列]聊一聊HTTPS那些事儿
查看>>
ngVerify - 更高效的 AngularJS 表单验证
查看>>
300. Longest Increasing Subsequence
查看>>
如图 在 iOS 到处 ipa包的时候 会有四个选项的作用
查看>>
来自于PayPal的RESTful API标准
查看>>
[单刷APUE系列]第十七章——高级进程间通信
查看>>
Jedis 与 MySQL的连接线程安全问题
查看>>
HTTP权威指南:第二章
查看>>
php爬虫:知乎用户数据爬取和分析
查看>>
番茄酱带你入门angular
查看>>
Longest Common Prefix
查看>>
Promise
查看>>
每个程序员都应该有个 Github 简历
查看>>
Zabbix 集成 OneAlert 实现全方位告警
查看>>
table-cell布局
查看>>
JDK 11 已进入候选发布阶段,计划9月25日发布正式版
查看>>
Nacos 发布 0.9.0 版本,为 GA 作准备
查看>>
Android布局Layout_weight详细剖析
查看>>