| Author |
threads
|
srilatha rao
Greenhorn
Joined: Jun 01, 2006
Posts: 21
|
|
If a parent thread invokes join method on a child thread, then parent thread will go into the blocked-for-join-completion state. If that child thread sleeps for some time in that execution, Will the parent thread start running before the completion of child thread. please explain... Thanks in advance
|
 |
Javier Sanchez Cerrillo
Ranch Hand
Joined: Aug 02, 2006
Posts: 152
|
|
|
NO. Since the parent Thread is sleeping it cannot wake up just until child Thread has finished his work or it has been interrupted.
|
SCJP 5.0 95%<br /> <br />The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge.
|
 |
 |
|
|
subject: threads
|
|
|