InterviewSolution
Saved Bookmarks
| 1. |
What invokes a thread's run() method? |
|
Answer» After a thread is started, via its start() method of the Thread class, the JVM invokes the thread's run() method when the thread is initially executed. |
|