DEVFYI - Developer Resource - FYI

What invokes a thread's run() method?

Java Interview Questions and Answers (part 1)


(Continued from previous question...)

38. What invokes a thread's run() method?

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.

(Continued on next question...)

Other Interview Questions