| Author |
Daemon Thread and Non-Daemon Thread
|
Saurabh Saha
Ranch Hand
Joined: Dec 08, 2004
Posts: 52
|
|
Hi All, I want to know what is Daemon Thread and how it is different from Non-Daemon Thread. Thanks & Regards, Vivek Mishra
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24081
|
|
|
It's just a flag in the Thread object. The JVM will continue to run only as long as non-daemon threads exist. As soon as the only running threads have the daemon property set, the JVM will exit. That's it -- nothing more.
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: Daemon Thread and Non-Daemon Thread
|
|
|