Invoking run() Method of a Thread

Q

What invokes a thread's run() method?

✍: FYIcenter

A

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.

2007-03-03, 6485👍, 0💬