InterviewSolution
| 1. |
Can You Again Start Thread? |
|
Answer» No, we cannot start THREAD again, doing so will throw runtimeException java.lang.IllegalThreadStateException. The reason is once run() method is executed by Thread, it GOES into dead state. No, we cannot start Thread again, doing so will throw runtimeException java.lang.IllegalThreadStateException. The reason is once run() method is executed by Thread, it goes into dead state. |
|