✏️ Explanatory Question

What invokes a thread's run() method?

👁 2,768 Views
📘 Detailed Answer
💡

Answer with Explanation

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.