在Java中使用getState

时间:2019-03-03 17:14:56

标签: java getstate

我是编程新手,我刚开始在Java上使用Applets。我看到了命令getState并了解它对特定代码的作用,但我不知道它的实际作用。 getState()上的Java命令的功能是什么?我们用它做什么?

1 个答案:

答案 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