Java Thread isAlive()方法

java.lang.Thread.isAlive() 方法测试线程是活跃的。线程是活跃的,那么它已经启动且尚未死亡。

1 语法

public final boolean isAlive()

2 参数

3 返回值

如果该线程是活跃的,此方法返回true, 否则返回false。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.lang.Thread.isAlive()方法的例子
 */
import java.lang.*;

public class Demo implements Runnable {

    public void run() {

        Thread t = Thread.currentThread();
        // tests if this thread is alive
        System.out.println("status = " + t.isAlive());
    }

    public static void main(String args[]) throws Exception {

        Thread t = new Thread(new Demo());

        // this will call run() function
        t.start();

        // waits for this thread to die
        t.join();

        // tests if this thread is alive
        System.out.println("status = " + t.isAlive());
    }
}

输出结果为:

status = true
status = false

热门文章

优秀文章