Sahil Kapoor wrote:
I know that this is only supposed to be "explanation" code, but I have to point out that this part is not true.
The start() method, or the thread that called the start() method, does not call the run() method. The start() method creates a new thread, and part of the process, after start up, of the newly created thread, is to call the run() method.
Henry