---
title: "What does join() method?"  
description: "What does join() method?"  
author: "Anonymous User"  
published: 2015-05-05  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/2489/what-does-join-method  
category: "java"  
tags: ["java", "multiple threading"]  
reading_time: 1 minute  

---

# What does join() method?

The join() method waits for a thread to die. In other words, it causes the currently running threads to stop executing until the thread it joins with completes its task

## Answers

### Answer by Anonymous User

The join() method waits for a thread to die. In other words, it causes the currently running threads to stop executing until the thread it joins with completes its task


---

Original Source: https://www.mindstick.com/interview/2489/what-does-join-method

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
