java.lang.Thread.join(long millis)方法實例
java.lang.Thread.join(long millis) 方法等待至多毫毫秒為這個線程終止。超時為0表示永遠等待。
聲明
以下是java.lang.Thread.join()方法的聲明
public final void join(long millis) throws InterruptedException
參數
-
millis -- 這是等待的毫秒數。
返回值
此方法不返回任何值。
異常
-
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 at most 2000 milliseconds for this thread to die. t.join(2000); System.out.println("after waiting for 2000 milliseconds..."); System.out.print(t.getName()); //checks if this thread is alive System.out.println(", status = " + t.isAlive()); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Thread-0, status = true after waiting for 2000 milliseconds... Thread-0, status = false