+ 1
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 adaemon thread is the garbage collection. You can use the setDaemon(boolean) method to change the Thread daemon properties before the threadstarts.
13th Sep 2016, 12:51 PM
bryan