InterviewSolution
Saved Bookmarks
| 1. |
Is it possible to call the run() method directly to start a new thread? |
|
Answer» No, it's not possible at all. You need to CALL the start METHOD to create a new THREAD OTHERWISE run method won't create a new thread. Instead, it will execute in the CURRENT thread. |
|