why do daemon threads keep on running even when we are delieberately killing the execution of main thread
Rahul Mahindrakar
Ranch Hand
Joined: Jul 28, 2000
Posts: 1831
posted
0
This is not true. Daemon threads are killed once all the user threads have exited. Check out the code example below. This example basically creates a daemon thread which is in a while(true) loop to print out "in Daemon thread". If Daemon threads
keep on running even when we are delieberately killing the execution of main thread
then this program should keep printing "in Daemon thread" forever. However this is not so.
RAVI BHAWNANI
Greenhorn
Joined: Jan 29, 2001
Posts: 4
posted
0
thanks .i have received your mail soon will be back with new query