我是编程的新手,我刚刚开始使用Java
上的小程序。我看到了命令getState,并了解了它对特定代码的作用,但我不知道它实际上是在做什么。Java
上getState()
命令的函数是什么?我们将其用于什么?
这是我在搜索后发现的getState()使用的快速示例:
package com.tutorialspoint;
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