InterviewSolution
Saved Bookmarks
| 1. |
What Is Difference Between Starting Thread With Run() And Start() Method? |
|
Answer» When you call start() method, MAIN thread INTERNALLY CALLS run() method to start newly created Thread, so run() method is ultimately CALLED by newly created thread. When you call start() method, main thread internally calls run() method to start newly created Thread, so run() method is ultimately called by newly created thread. |
|