位置:首页 > Java技术 > java.lang > java.lang.Thread.getState()方法实例

java.lang.Thread.getState()方法实例

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

声明

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

public Thread.State getState()

参数

  • NA

返回值

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

异常

  • NA

例子

下面的例子显示java.lang.Thread.getState()方法的使用。

package com.yiibai;

import java.lang.*;

public class ThreadDemo 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 ThreadDemo());
      // this will call run() function
      t.start();   
   }
} 

让我们来编译和运行上面的程序,这将产生以下结果:

Thread-0
state = RUNNABLE