Aktive lesere: 7

Lokale meninger, globale ytringer

Get the state of a thread

To get the state of a thread use getState() method of a Thread class. One thing to be noted is that this method is designed for use in monitoring of the system state, not for synchronization control.

package org.brudvik.example.lang;

public class GetThreadState implements Runnable {
    public void run() {
        System.out.println("Start..");
    }

    public static void main(String[] args) {
        Thread thread = new Thread(new GetThreadState());
        thread.start();

        //
        // Get the state of the thread.
        //
        Thread.State state = thread.getState();
        System.out.println("State: " + state.name());
    }
}

Could this be done easier? Let me know!

Anbefalte lenker
Aktivitet