0
点赞
收藏
分享

微信扫一扫

线程守护--Daemon

木匠0819 2022-03-12 阅读 86
package state;
//测试守护线程
//上帝守护你
public class TestDaemon {

    public static void main(String[] args) {
        God god=new God();
        You you=new You();
        Thread thread=new Thread(god);
        thread.setDaemon(true);//默认是false表示是用户线程,正常的线程都是用户线程。。。
    thread.start();//上帝守护线程启动
        new Thread(you).start();//你 用户线程启动。。。
    }
}
//上帝
class  God implements  Runnable{

    @Override
    public void run() {
        while(true){
            System.out.println("上帝保护着你");
        }
    }
}


//你
class You implements  Runnable{

    @Override
    public void run() {
        for (int i = 0; i < 36500; i++) {
            System.out.println("你一生都开心快乐的活着");
        }
        System.out.println("==========goodbye! world!====");
    }
}
举报

相关推荐

0 条评论