when we applied start()method on a thread ,how does it know
that to execute run()method on that object?
Answers were Sorted based on User's Feedback
Answer / suma
When start method is called , JVM calls run method of this
object
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / sushant
Thread in a java inbuilt Object.
So if you are implementing threads in your system by using
Thread class or runnable interface, the JVM will look at
that and keep an eye on your code. As soon as you call the
start method it will go and call the run method on its own.
The funda here is that this is something that the JVM if
fully responsible of handling.
| Is This Answer Correct ? | 5 Yes | 0 No |
If i learn Java, what kind of applications can i create that will help Banking, Retail, Hotel, Logistics industry.
whats is mean by object and class?
How many requests can a server fetch at a time?
Will the general public have access to the infobus apis?
Is the ternary operator written x : y ? Z or x ? Y : z ?
If we opened Windows Internet Explorer 4 times, does it starts 4 processes or 4 threads?
which book is better for jdbc ,servlets and jsp
What are Benefits of Connection Pooling?
whats is statement and procedure
Name the method to find, if a thread is active or not?
Do you think that java should have had pointers?
Can I use multiple html form elements with the same name?