在Java中,join()
方法是Thread
類的一個方法,它用于等待一個線程完成(終止)后,才繼續執行當前線程
以下是如何使用join()
方法的示例:
public class JoinExample {
public static void main(String[] args) throws InterruptedException {
// 創建并啟動一個新線程
Thread newThread = new Thread(() -> {
for (int i = 0; i < 5; i++) {
System.out.println("New thread: " + i);
try {
Thread.sleep(1000); // 模擬耗時操作
} catch (InterruptedException e) {
e.printStackTrace();
}
}
});
newThread.start();
// 在主線程中調用join()方法,等待新線程完成后再繼續執行
newThread.join();
// 輸出主線程的內容
System.out.println("Main thread continues after the new thread has finished.");
}
}
在這個示例中,我們創建了一個新線程newThread
,該線程會打印0到4的數字,每隔1秒打印一次。然后在主線程中調用newThread.join()
,使得主線程等待新線程完成后再繼續執行。因此,輸出結果將首先顯示新線程的內容,然后才顯示主線程的內容。
注意:join()
方法可能會拋出InterruptedException
異常,因此需要使用try-catch
語句進行處理。