目录

void join()

描述 (Description)

java.lang.Thread.join()方法等待此线程死亡。

声明 (Declaration)

以下是java.lang.Thread.join()方法的声明

public final void join() throws InterruptedException

参数 (Parameters)

NA

返回值 (Return Value)

此方法不返回任何值。

异常 (Exception)

InterruptedException - 如果有任何线程中断了当前线程。 抛出此异常时,将清除当前线程的中断状态。

例子 (Example)

以下示例显示了java.lang.Thread.join()方法的用法。

package com.iowiki;
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
↑回到顶部↑
WIKI教程 @2018