【Java】【多线程】守护线程
程序员文章站
2022-05-05 21:37:38
...
学而不思则罔,思而不学则殆
/**
* Marks this thread as either a {@linkplain #isDaemon daemon} thread
* or a user thread. The Java Virtual Machine exits when the only
* threads running are all daemon threads.
*
* <p> This method must be invoked before the thread is started.
*
* @param on
* if {@code true}, marks this thread as a daemon thread
*
* @throws IllegalThreadStateException
* if this thread is {@linkplain #isAlive alive}
*
* @throws SecurityException
* if {@link #checkAccess} determines that the current
* thread cannot modify this thread
*/
public final void setDaemon(boolean on) {
checkAccess();
if (isAlive()) {
throw new IllegalThreadStateException();
}
daemon = on;
}
The Java Virtual Machine exits when the only threads running are all daemon threads.
这句话是官方的描述,Java虚拟机退出,当运行的线程全是守护线程的时候。
必须在线程start之前调用
守护线程是比较特殊的线程。
非守护线程
private static void testThree() {
Thread thread = new Thread(new Runnable() {
public void run() {
int i = 0;
while (true) {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("守护线程工作中..." + i++);
// TODO: 2020/8/31 做一些守护线程的工作
}
}
});
//thread.setDaemon(true); //将线程设置为说话线程
thread.start(); //启动线程
try {
System.out.println("主线程休眠5s");
TimeUnit.SECONDS.sleep(5);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("主线程结束");
}
创建一个永远不结束的非守护线程,该程序永远不会退出(正常情况下)。
5s过后,main线程结束,但是子线程还在一直运行,虚拟机没有退出,红点一直显示中。此时虚拟机中还存在工作的非守护线程,不会退出。
守护线程
private static void testThree() {
Thread thread = new Thread(new Runnable() {
public void run() {
int i = 0;
while (true) {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("守护线程工作中..." + i++);
// TODO: 2020/8/31 做一些守护线程的工作
}
}
});
thread.setDaemon(true); //将线程设置为说话线程
thread.start(); //启动线程
try {
System.out.println("主线程休眠5s");
TimeUnit.SECONDS.sleep(5);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("主线程结束");
}
添加一个守护线程
main线程结束后,守护线程也退出了,红点没有,且code = 0,正常提出。所以当只有守护线程的时候,虚拟机会正常退出。
作用
守护线程经常用作执行后台任务(后台线程),当你希望关闭某些线程的时候或者退出JVM的时候,一些线程能够自动关闭,这个时候就可以考虑使用守护线程。
上一篇: IDEA中创建web的Maven项目
下一篇: Java多线程:后台守护线程