Java: Understanding the Concept of Daemon Thread
Java offers two types of threads
User thread
Daemon thread
User Thread
User threads are high-priority threads. The JVM will wait for any user thread to complete its task before terminating it.
Daemon Thread
A Daemon thread is a type of thread tha...
shivaprasadgurram.hashnode.dev4 min read