我正在做一些测试,以理解java中不同的线程状态,并得到了一些查询。
通常,当一个线程被实例化时,它被称为处于"NEW"状态,然后当调用它上的start()方法时,操作系统调度器将获得控制并处于"RUNNABLE"状态,而且当run()被start()内部调用时,它被称为处于运行状态。
Thread.currentThread().getState() // Returns the state of the thread但是,在执行以下代码时,即使在"RUNNING"方法中进行测试,线程状态也不会显示为run。
有人能帮我理解它为什么会这样吗?
public static void main(String[] args) {
System.out.println("Hello World");
Thread t=new Thread(()->{
System.out.println("Hi");
System.out.println(Thread.currentThread().getState()); //// STATE DISPLAYED AS "RUNNABLE" AGAIN
});
System.out.println(t.getState()); // STATE DISPLAYED AS "NEW"
t.start();
System.out.println(t.getState()); // STATE DISPLAYED AS "RUNNABLE"
}lambda表达式用于实现run()方法,在该方法中,我们正在测试线程的状态,它再次显示为"RUNNABLE“而不是”RUNNABLE“。
发布于 2020-12-27 16:19:33
因为状态RUNNING不存在。如果查看getState方法的定义,就会看到以下内容:
public State getState() {
// get current thread state
return jdk.internal.misc.VM.toThreadState(threadStatus);
}如果分析State是什么,您可以看到它是以下ENUM:
public enum State {
/**
* Thread state for a thread which has not yet started.
*/
NEW,
/**
* Thread state for a runnable thread. A thread in the runnable
* state is executing in the Java virtual machine but it may
* be waiting for other resources from the operating system
* such as processor.
*/
RUNNABLE,
/**
* Thread state for a thread blocked waiting for a monitor lock.
* A thread in the blocked state is waiting for a monitor lock
* to enter a synchronized block/method or
* reenter a synchronized block/method after calling
* {@link Object#wait() Object.wait}.
*/
BLOCKED,
/**
* Thread state for a waiting thread.
* A thread is in the waiting state due to calling one of the
* following methods:
* <ul>
* <li>{@link Object#wait() Object.wait} with no timeout</li>
* <li>{@link #join() Thread.join} with no timeout</li>
* <li>{@link LockSupport#park() LockSupport.park}</li>
* </ul>
*
* <p>A thread in the waiting state is waiting for another thread to
* perform a particular action.
*
* For example, a thread that has called {@code Object.wait()}
* on an object is waiting for another thread to call
* {@code Object.notify()} or {@code Object.notifyAll()} on
* that object. A thread that has called {@code Thread.join()}
* is waiting for a specified thread to terminate.
*/
WAITING,
/**
* Thread state for a waiting thread with a specified waiting time.
* A thread is in the timed waiting state due to calling one of
* the following methods with a specified positive waiting time:
* <ul>
* <li>{@link #sleep Thread.sleep}</li>
* <li>{@link Object#wait(long) Object.wait} with timeout</li>
* <li>{@link #join(long) Thread.join} with timeout</li>
* <li>{@link LockSupport#parkNanos LockSupport.parkNanos}</li>
* <li>{@link LockSupport#parkUntil LockSupport.parkUntil}</li>
* </ul>
*/
TIMED_WAITING,
/**
* Thread state for a terminated thread.
* The thread has completed execution.
*/
TERMINATED;
}或来自API Thread.State
公共静态枚举Thread.State扩展了Enum的线程状态。线程可以处于以下状态之一:新--尚未启动的线程处于此状态。 在虚拟机中执行的线程处于这种状态。阻止等待监视器锁的线程处于这种状态。正在无限期等待另一个线程执行特定操作的线程处于此状态。等待另一个线程在指定的等待时间内执行操作的线程处于TIMED_WAITING状态。终止已退出的线程处于此状态。在给定的时间点,线程只能处于一种状态。这些状态是虚拟机状态,不反映任何操作系统线程状态。
https://stackoverflow.com/questions/65467785
复制相似问题