首页 > 编程语言 > 详细

Java优雅的停止线程

时间:2021-05-05 17:28:25      阅读:11      评论:0      收藏:0      [点我收藏+]

技术分享图片

 

程序代码:

class TPTInterrupt {
    private Thread thread;
    public void start() {
        thread = new Thread(() -> {
            while (true) {
                Thread current = Thread.currentThread();
                if (current.isInterrupted()) {
                    System.out.println("料理后事");
                    break;
                }
                try {
                    Thread.sleep(2000);
                    System.out.println("将结果保存");
                } catch (InterruptedException e) {
                    current.interrupt();
                }
            }
        }, "监控线程");
        thread.start();
    }
    public void stop() {
        thread.interrupt();
    }
}

 public static void main(String[] args) throws 
     InterruptedException {
        TPTInterrupt t = new TPTInterrupt();
        t.start();
        Thread.sleep(3500);
        System.out.println("stop");
        t.stop();
    }    

 

Java优雅的停止线程

原文:https://www.cnblogs.com/freecodewriter/p/14731723.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!