What invokes a thread?s run() method?

Answers were Sorted based on User's Feedback



What invokes a thread?s run() method?..

Answer / ranganathkini

The start() method of the java.lang.Thread invokes the run()
method

Is This Answer Correct ?    9 Yes 0 No

What invokes a thread?s run() method?..

Answer / vikaas

After a thread is started(using its start() method), the JVM
invokes the thread's run() method.

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More Advanced Java Interview Questions

What is a clone?

0 Answers  


What is a modular application?

0 Answers  


What are synchronized methods and synchronized statements?

2 Answers   Adobe,


What is the purpose of the wait() method?

0 Answers  


What are the difference between RMI and CORBA?

0 Answers  






What are transaction attributes?

0 Answers  


What is jboss?

0 Answers  


int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!

0 Answers  


How would you reatach detached objects to a session when the same object has already been loaded into the session?

0 Answers  


Is multiple try block is possible in single java Application......

3 Answers  


What is the relationship between local interfaces and container-managed relationships?

0 Answers  


Describe, in general, how java's garbage collector works?

0 Answers  


Categories