Home » Java Thread getState() Method with Examples

Java Thread getState() Method with Examples

by Online Tutorials Library

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

Test it Now

Output:

Running thread name: Thread-0 State of thread: RUNNABLE Running thread name: Thread-1 State of thread: RUNNABLE 

You may also like