在java中使用getState
Posted
技术标签:
【中文标题】在java中使用getState【英文标题】:Using getState in java 【发布时间】:2019-07-25 01:45:19 【问题描述】:我是编程新手,刚开始在Java
上使用小程序。我看到命令 getState 并了解它对特定代码的作用,但我不知道它实际上做了什么。 getState()
命令对Java
有什么作用?我们用它做什么?
【问题讨论】:
Google 是你的朋友 【参考方案1】:以下是我搜索后发现的 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
【讨论】:
以上是关于在java中使用getState的主要内容,如果未能解决你的问题,请参考以下文章