package com.sean.base.threadStudy;
/**
* 测试守护线程
* 上帝守护你
* @create 2021-02-27 19:57
*/
public class DaemonDemo {
public static void main(String[] args) {
God god = new God();
You2 you = new You2();
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 You2 implements Runnable{
@Override
public void run() {
for (int i = 0; i < 36500; i++) {
System.out.println("你一生都开心的活着");
}
System.out.println("------------goodbye!world!——————————————————————");
}
}