![]() |
Sponsored Link •
|
Advertisement
|
Advertisement
|
This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.
Message:
> I dont know about this Daemon threads give any > plz..any who know send me details Threads that work in the background to support the runtime environment are called daemon threads. For example, the clock handler thread, the idle thread, the garbage collector thread, the screen updater thread, and the garbage collector thread are all daemon threads. The virtual machine exits whenever all non-daemon threads have completed. public final void setDaemon(boolean isDaemon) By default a thread you create is not a daemon thread. However you can use the setDaemon(true) method to turn it into one.
Replies:
|
Sponsored Links
|