If the start() method of a thread internally calls the run() method, then why don't we directly call the run() method in our code? What are the issues involved in doing so?
| show 1 more comment |
|
The |
|||||||||
|
|
Calling Calling |
|||
|
|
|
Because And, given that your thread may be an infinite loop waiting for work, that would be a bad thing. |
|||
|
|
start()andrun(), like in this answer: stackoverflow.com/questions/262816/… – birryree Jan 28 '11 at 16:10