InterviewSolution
Saved Bookmarks
| 1. |
What is the start() and run() method of Thread class? |
|
Answer» start(): In simple words, the start() method is used to start or begin the EXECUTION of a NEWLY created THREAD. When the start() method is called, a new thread is created and this newly created thread executes the task that is kept in the run() method. One can call the start() method only once. |
|