Java Thread getState()方法

java.lang.Thread.getState() 方法返回该线程的状态。它被设计用于监视系统状态,不用于同步控制。

1 语法

public Thread.State getState()

2 参数

3 返回值

此方法返回该线程的状态。

4 示例 

package com.yiidian;

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

public class Demo implements Runnable {

    public void run() {

        // returns the state of this thread
        Thread.State state = Thread.currentThread().getState();
        System.out.println(Thread.currentThread().getName());
        System.out.println("state = " + state);
    }

    public static void main(String args[]) {
        Thread t = new Thread(new Demo());

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

输出结果为:

Thread-0
state = RUNNABLE

热门文章

优秀文章