Hello,
I was reading about join() from the tutorial's provided by sun
http://java.sun.com/docs/books/tutorial/essential/concurrency/join.html
It says that join() stops the current
thread to stop and join it at the end of other thread and it must wait, till that thread completes
and then the current thread will start resuming its work. But i am confused by this line, what does it mean
"The join method allows one thread to wait for the completion of another. If t is a Thread object whose thread is currently executing,
t.join();"
Does it mean t is the currently running thread?? Please help.