其他分享
首页 > 其他分享> > 守护线程

守护线程

作者:互联网

package cn.ruhsang.state;

//测试守护线程
//测试上帝守护你
//用户线程 虚拟机必须要等待用户线程执行完毕
//守护线程 虚拟机不用等待守护线程执行完毕
public class TestDaemon {
public static void main(String[] args) {
God god = new God();
Yon yon = new Yon();

Thread thread = new Thread(god);
thread.setDaemon(true);//默认的是false表示是用户线程,正常的线程都是用户线程
thread.start();//上帝守护线程启动

new Thread(yon).start();//你 用户线程启动
}
}
//上帝
class God implements Runnable{

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


//你
class Yon implements Runnable{

@Override
public void run() {
for (int i = 0; i < 36500; i++) {
System.out.println("你一生都开心的活着");
}
System.out.println("拜拜走了======");
}
}

标签:Yon,God,线程,new,public,守护
来源: https://www.cnblogs.com/nigustudent/p/14856066.html