aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes threads Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "threads" Watch "threads" New topic
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.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: threads
 
Similar Threads
Join method
How can I determine when my Threads are complete?
Parent Thread stops then does child thread also stop?
How to block child thread until parent thread terminates