我是编程新手,我刚开始在Java
上使用Applets。我看到了命令getState并了解它对特定代码的作用,但我不知道它的实际作用。 getState()
上的Java
命令的功能是什么?我们用它做什么?
答案 0 :(得分:0)
下面是我在搜索后发现的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