java多线程– thread.setDaemon(true) 守护线程简单实现
守护线程 ,就是当有其他线程开启时,守护线程就一直开启守护线程会在所有线程结束后自动结束,
模型: 人的生命有限 默认100年,上帝会一直存在,所以一直会守护着你
package cn.usts.edu.lesson06;
/**
* 守护线程 ,就是当有其他线程开启时,守护线程就一直开启
* 守护线程会在所有线程结束后自动结束
* */
public class DaemonTest {
public static void main(String[] args) {
God god = new God();
You you = new You();
Thread godThread = new Thread(god);
godThread.setDaemon(true);// 默认是普通用户线程 默认值是false t
共有 0 条评论