What is a daemon thread in Java?

java, multithreading

Solution

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.

Problem

Can anybody tell me what daemon threads are in Java?

Original source

Related problems