1.

What Invokes A Thread's Run() Method?

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.



Discussion

No Comment Found