Java中的守护线程是什么?

2022-01-30 00:00:00 multithreading java

Can anybody tell me what daemon threads are in Java?

解决方案

A daemon thread is a thread that does not prevent the JVM from exiting when the program finishes but the thread is still running. An example for a daemon thread is the garbage collection.

You can use the setDaemon(boolean) method to change the Thread daemon properties before the thread starts.

相关文章