Daemon Thread in Java
Daemon Thread There are two types of threads The threads created by the user(create a thread in the program ) are called user threads. The threads that work in the background providing service to others are called Daemon Threads. The two methods used only in the daemon thread, not in the user thread are: Example … Read more