Java Developer Question:
Which invokes a thread's run() method in Java Programming?
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.
Previous Question | Next Question |
Can anonymous class be declared as implementing an interface and extending a class in Java Programming? | What is SimpleTimeZone class in Java Programming? |