InterviewSolution
Saved Bookmarks
| 1. |
Which Invokes A Thread's Run() Method In Java Programming? |
|
Answer» After a THREAD is STARTED, via its START() method or that of the Thread CLASS, the JVM INVOKES the thread's run() method when the thread is initially executed. After a thread is started, via its start() method or that of the Thread class, the JVM invokes the thread's run() method when the thread is initially executed. |
|