java.lang.Thread.join()方法實例
java.lang.Thread.join() 方法等待該線程終止。
聲明
以下是java.lang.Thread.join()方法的聲明
public final void join() throws InterruptedException
參數
-
NA
返回值
此方法不返回任何值。
異常
-
InterruptedException -- 如果任何線程中斷當前線程。當這種異常被拋出當前線程的中斷狀態被清除。
例子
下麵的例子顯示java.lang.Thread.join()方法的使用。
package com.yiibai; import java.lang.*; public class ThreadDemo implements Runnable { public void run() { Thread t = Thread.currentThread(); System.out.print(t.getName()); //checks if this thread is alive System.out.println(", status = " + t.isAlive()); } public static void main(String args[]) throws Exception { Thread t = new Thread(new ThreadDemo()); // this will call run() function t.start(); // waits for this thread to die t.join(); System.out.print(t.getName()); //checks if this thread is alive System.out.println(", status = " + t.isAlive()); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Thread-0, status = true Thread-0, status = false