devxlogo

Use join() to Check if a Thread Has Finished

Use join() to Check if a Thread Has Finished

Suppose you start a thread and you want to wait for that thread to finish before you continue processing. One way is to keep checking if the thread has finished by using the isAlive() method of your thread. However, this keeps the processor busy with repetitive check of the status of the thread.

A more efficient way to do this is to use the join() method of your thread as follows:

MyThread myThread = new MyThread();myThread.start();try{	myThread.join();}catch(InterruptedException ie){}System.out.println("I'm done");

This way, the main thread is joined to myThread and waits for myThread to die. As soon as myThread dies, “I’m Done” is printed, denoting that the main thread was waiting until now.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist