Interview Question in Java


 

Interview Question :: What is daemon thread?

 What is daemon thread?

by ksk
VoteNowAnswers to "What is daemon thread?"

 Theards which are running on the background are called deamon threads. daemon thread is a thread which doesn't give any chance to run other threads once it enters into the run state it doesn't give any chance to run other threads. Normally it will run forever, but when all other non-daemon threads are dead, daemon thread will be killed by JVM.

 
by ksk