78
Java Thread getState() method
The getState() method of thread class returns the thread’s state. This method is designed for monitoring the system state, not for synchronization control.
Syntax
Return
This method returns the state of the thread.
Example
Output:
Running thread name: Thread-0 State of thread: RUNNABLE Running thread name: Thread-1 State of thread: RUNNABLE
Next TopicMultithreading Java