InterviewSolution
Saved Bookmarks
| 1. |
Can we make the main() thread a daemon thread? |
|
Answer» In java multithreading, the MAIN() THREADS are ALWAYS non-DAEMON threads. And there is no way we can change the NATURE of the non-daemon thread to the daemon thread. |
|