The java.lang.Thread.getState() method returns the state of this thread. It is designed for use in monitoring of the system state, not for synchronization control.
Syntax:public Thread.State getState()
Example: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();
}
}
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 999 / 159176107. Delta: 0.00305 с