Can anybody tell me what daemon threads are in Java?

25 s
25

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.

Leave a Reply

Your email address will not be published. Required fields are marked *