码迷,mamicode.com
首页 > 编程语言 > 详细

多线程06.thread守护线程

时间:2019-04-03 22:13:00      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:for   one   read   ace   public   ack   nbsp   void   stat   

package chapter2;

public class Demo02 {
    public static void main(String[] args) {
Thread th1=new Thread(){
    @Override
    public void run() {
        //主线程
        Thread th2=new Thread(){

            //守护线程
            @Override
            public void run() {
                try {
                    Thread.sleep(1_000);
                    System.out.println("T thread finish done.");
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }

            }
        };
       // 当th1.setDaemon(true),即t为Daemon线程时,主线程结束,守护线程也结束
        th2.setDaemon(true);
        th2.start();
        try { while (true) {
            System.out.println("Do some thing for health check.");
            Thread.sleep(1_000);
        }
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

    }
};
            th1.start();



    }
}

 

多线程06.thread守护线程

标签:for   one   read   ace   public   ack   nbsp   void   stat   

原文地址:https://www.cnblogs.com/q1359720840/p/10651699.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!