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 |
What is the difference between == and === javascript?
Why is an interface be able to extend more than one interface but a class can’t extend more than one class?
Why method overloading and method overriding required in java?
What does business logic mean?
why String class is immutable.
What is meant by 'bit masking' in java?
what is the use of reference variable
What is run time polymorphism?
6 Answers eClerx, Elementus Technologies,
What is the default size of arraylist in java?
For technical interview question please sir send me because tomorrow my interview
What Is Composition?
What is unmodifiable list in java?