InterviewSolution
Saved Bookmarks
| 1. |
What Happens When Start() Is Called? |
|
Answer» A NEW thread of EXECUTION with a new call STACK STARTS. The state of thread changes from new to runnable. When the thread gets chance to execute its target run() method starts to run. A new thread of execution with a new call stack starts. The state of thread changes from new to runnable. When the thread gets chance to execute its target run() method starts to run. |
|