InterviewSolution
Saved Bookmarks
| 1. |
How To Make A Normal Thread As Daemon Thread? |
|
Answer» We should CALL setDaemon(true) METHOD on the thread object to make a thread as DAEMON thread. We should call setDaemon(true) method on the thread object to make a thread as daemon thread. |
|