-1

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

4

1 回答 1

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
于 2019-03-03T17:22:04.240 回答