守护线程Daemon

Posted zheaven

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了守护线程Daemon相关的知识,希望对你有一定的参考价值。

官网API解释

setDaemon

public final void setDaemon(boolean on)
Marks this thread as either a daemon thread or a user thread. The Java Virtual Machine exits when the only threads running are all daemon threads.

This method must be invoked before the thread is started.

 

Parameters:
on - if true, marks this thread as a daemon thread
Throws:
IllegalThreadStateException - if this thread is alive
SecurityException - if checkAccess() determines that the current thread cannot modify this thread

setDaemon设置线程为守护线程,必须放到start()方法之前,目的是当前所有运行中的线程为守护线程时该线程结束

使用守护线程模拟心跳实验

package com.dwz.concurrency.chapter4;
/**
 *     使用守护线程模拟心跳实验
 */
public class DaemonThread2 {
    public static void main(String[] args) {
        Thread t = new Thread(() -> {
            Thread innerThread = new Thread(() -> {
                try {
                    while(true) {
                        System.out.println("Do some thing for health check.");
                        Thread.sleep(1_000);
                    }
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }); 
            
            innerThread.setDaemon(true);
            innerThread.start();
        });
        t.start();
        
        try {
            Thread.sleep(3_000);
            System.out.println("T Thread finish done.");
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

以上是关于守护线程Daemon的主要内容,如果未能解决你的问题,请参考以下文章

进程线程_daemon

Java 多线程之守护线程(Daemon)

守护线程(Daemon Thread)

守护线程(Daemon Thread)

JAVA - 守护线程(Daemon Thread)

JAVA Daemon线程