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)
import java.io.*;
class ThreadJoining extends Thread
{
@Override
public void run()
{
for ( int i = 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);
}
}
}
class GFG
{
public static void main (String[] args)
{
ThreadJoining t1 = new ThreadJoining();
ThreadJoining t2 = new ThreadJoining();
ThreadJoining t3 = new ThreadJoining();
t1.start();
try
{
System.out.println( "Current Thread: "
+ Thread.currentThread().getName());
t1.join();
}
catch (Exception ex)
{
System.out.println( "Exception has " +
"been caught" + ex);
}
t2.start();
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.
If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks 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.
Feeling lost in the vast world of Backend Development? It's time for a change! Join our
Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
- Comprehensive Course
- Expert Guidance for Efficient Learning
- Hands-on Experience with Real-world Projects
- Proven Track Record with 100,000+ Successful Geeks
Last Updated :
17 Feb, 2021
Like Article
Save Article