What invokes a thread's run() method?

Q

What invokes a thread's run() method?

✍: Guest

A

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.

2012-10-18, 2087👍, 0💬