What is a daemon thread in Java?
Answers
Answered by
1
Daemon thread is a low priority thread that runs in background to perform tasks such as garbage collection. Properties: They can not prevent the JVM from exiting when all the user threads finish their execution.
Similar questions