Suppose a thread A is running. I have another thread, B, who's not. B has been started, is on runnable state.
What happens if I call: B.join()?
Will it suspend the execution of A or will it wait for A's run() method to complete?
|
Suppose a thread What happens if I call: Will it suspend the execution of |
|||||||||
|
|
join() will make the currently executing thread to wait for the the thread it is called on to die. So - If A is running, and you call B.join(), A will stop executing until B ends/dies. |
||||
|
|
|
From http://java.sun.com/docs/books/tutorial/essential/concurrency/join.html
I can strongly recommend the Java Tutorial as a learning resource. |
|||
|
|
|
Join waits till the thread is dead. If you call it on a dead thread, it should return immediately. Here's a demo:
|
||||
|
|
|
Calling the join method on a thread causes the calling thread to wait for the thread join() was called on to finish. It does not affect any other threads that are not the caller or callee. In your example, A would only wait for B to complete if you are calling B.join() from A. If C is calling B.join(), A's execution is unaffected. |
|||
|
|
|
I think that if |
|||
|
|