java.lang.Thread class provides the join() method which allows one thread to wait until another thread completes its execution. If t is a Thread object whose thread is currently executing, then t.join() will make sure that t is terminated before the next instruction is executed by the program.
If there are multiple threads calling the join() methods that means overloading on join allows the programmer to specify a waiting period. However, as with sleep, join is dependent on the OS for timing, so you should not assume that join will wait exactly as long as you specify.
There are three overloaded join functions.
- join(): It will put the current thread on wait until the thread on which it is called is dead. If thread is interrupted then it will throw InterruptedException.
Syntax:public final void join()
- join(long millis) :It will put the current thread on wait until the thread on which it is called is dead or wait for specified time (milliseconds).
Syntax:public final synchronized void join(long millis)
- join(long millis, int nanos): It will put the current thread on wait until the thread on which it is called is dead or wait for specified time (milliseconds + nanos).
Syntax:public final synchronized void join(long millis, int nanos)
// Java program to explain the// concept of joining a thread.importjava.io.*;ÂÂ// Creating thread by creating the// objects of that classclassThreadJoiningextendsThread{   Â@Override   Âpublicvoidrun()   Â{       Âfor(inti =0; i <2; i++)       Â{           Âtry           Â{               ÂThread.sleep(500);               ÂSystem.out.println("Current Thread: "                       Â+ Thread.currentThread().getName());           Â}           Âcatch(Exception ex)           Â{               ÂSystem.out.println("Exception has"+                               Â" been caught"+ ex);           Â}           ÂSystem.out.println(i);       Â}   Â}}ÂÂclassGFG{   Âpublicstaticvoidmain (String[] args)   Â{       Â// creating two threads       ÂThreadJoining t1 =newThreadJoining();       ÂThreadJoining t2 =newThreadJoining();       ÂThreadJoining t3 =newThreadJoining();       Â// thread t1 starts       Ât1.start();       Â// starts second thread after when       Â// first thread t1 has died.       Âtry       Â{           ÂSystem.out.println("Current Thread: "                 Â+ Thread.currentThread().getName());           Ât1.join();       Â}       Âcatch(Exception ex)       Â{           ÂSystem.out.println("Exception has "+                               Â"been caught"+ ex);       Â}       Â// t2 starts       Ât2.start();       Â// starts t3 after when thread t2 has died.       Âtry       Â{           ÂSystem.out.println("Current Thread: "                Â+ Thread.currentThread().getName());           Ât2.join();       Â}       Âcatch(Exception ex)       Â{           ÂSystem.out.println("Exception has been"+                                   Â" caught"+ ex);       Â}       Ât3.start();   Â}}output:
Current Thread: main Current Thread: Thread-0 0 Current Thread: Thread-0 1 Current Thread: main Current Thread: Thread-1 0 Current Thread: Thread-1 1 Current Thread: Thread-2 0 Current Thread: Thread-2 1
In the above example we can see clearly second thread t2 starts after first thread t1 has died and t3 will start its execution after second thread t2 has died.
This article is contributed by Nitsdheerendra. If you like Lazyroar and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the Lazyroar main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
