What is the use join() in Threads ?
Answers were Sorted based on User's Feedback
Answer / harish
It waits for the Parent Thread process to be completed.
Even though, Child process is completed. It waits for the
Parent Thread.
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / madan
if we want to finish main thread last i.e to ensure all
child threads terminate prior to the main thread
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / a.sreekanth
The join() method of a Thread instance can be used to "join" the start of a thread's execution to the end of another thread's execution so that a thread will not start running until another thread has ended. If join() is called on a Thread instance, the currently running thread will block until the Thread instance has finished executing.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / venkat
Acoording to join the two Threads for some iterations.
| Is This Answer Correct ? | 0 Yes | 9 No |
Answer / padmaja
waits for specified number of milliseconds for thread to die
| Is This Answer Correct ? | 0 Yes | 10 No |
How many types of operators are there?
Why java is not 100% object-oriented?
What are the OOPS concepts in Java ?
What is t type java?
What type of variable is gender?
What is the need to implement Serializable interface (with no methods) for objects which are to be serialized ? We can write our own functionality which writes objects to streams then why we need to implement and tell JVM that which objects can be serialized.
What is the difference between jdk and jre?
What are the types of casting?
What is parameter tag and what is its use?
What is the purpose of using bufferedinputstream and bufferedoutputstream classes?
when we have to use final class in java?
Where is core java used?