InterviewSolution
Saved Bookmarks
| 1. |
What Is Daemon Thread In Java ? |
|
Answer» A daemon THREAD is NORMALLY runs on background. And it does not prevent the JVM from exiting when the program finishes but the thread is STILL running. A daemon thread is normally runs on background. And it does not prevent the JVM from exiting when the program finishes but the thread is still running. |
|