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.
相关文章