Javaでは、スレッドが実行されているかどうかをどのように判断しますか?


回答:


93

Thread.isAlive()


私はそれがといくつかの違いがあると思いますThread.State.RUNNABLE(最後のものはより信頼できるようです)
user924 2018年

33

この方法を使用できます。

boolean isAlive()

スレッドがまだ生きている場合はtrueを返し、スレッドが停止している場合はfalseを返します。これは静的ではありません。Threadクラスのオブジェクトへの参照が必要です。

もう1つのヒント:新しいスレッドがまだ実行されている間にメインスレッドを待機させるためにステータスをチェックしている場合は、join()メソッドを使用できます。もっと便利です。



9

を呼び出して、スレッドのステータスを確認しますThread.isAlive


6

正確には、

Thread.isAlive() スレッドが開始されている(まだ実行されていない可能性がある)が、runメソッドをまだ完了していない場合はtrueを返します。

Thread.getState() スレッドの正確な状態を返します。


5

Thread.State列挙型クラスと新しいgetState() APIは、スレッドの実行状態を照会するために提供されています。

スレッドは、特定の時点で1つの状態にしかなれません。これらの状態は、オペレーティングシステムのスレッド状態を反映しない仮想マシンの状態です[ NEW, RUNNABLE, BLOCKED, WAITING, TIMED_WAITING, TERMINATED]。

enum Thread.StateはEnumを拡張し、SerializableComparableを実装します

  • getState()jdk5 - public State getState() {...} « スレッドの状態を返しますthis。この方法は、同期制御ではなく、システム状態の監視に使用するように設計されています。

  • isAlive() - public final native boolean isAlive(); « 呼び出されたスレッドがまだ生きている場合はtrueを返し、そうでない場合はfalseを返します。スレッドが開始されていて、まだ死んでいない場合、スレッドは生きています。

クラスのサンプルソースコードjava.lang.Threadsun.misc.VM

package java.lang;
public class Thread implements Runnable {
    public final native boolean isAlive();

    // Java thread status value zero corresponds to state "NEW" - 'not yet started'.
    private volatile int threadStatus = 0;

    public enum State {
        NEW, RUNNABLE, BLOCKED, WAITING, TIMED_WAITING, TERMINATED;
    }

    public State getState() {
        return sun.misc.VM.toThreadState(threadStatus);
    }
}

package sun.misc;
public class VM {
    // ...
    public static Thread.State toThreadState(int threadStatus) {
        if ((threadStatus & JVMTI_THREAD_STATE_RUNNABLE) != 0) {
            return Thread.State.RUNNABLE;
        } else if ((threadStatus & JVMTI_THREAD_STATE_BLOCKED_ON_MONITOR_ENTER) != 0) {
            return Thread.State.BLOCKED;
        } else if ((threadStatus & JVMTI_THREAD_STATE_WAITING_INDEFINITELY) != 0) {
            return Thread.State.WAITING;
        } else if ((threadStatus & JVMTI_THREAD_STATE_WAITING_WITH_TIMEOUT) != 0) {
            return Thread.State.TIMED_WAITING;
        } else if ((threadStatus & JVMTI_THREAD_STATE_TERMINATED) != 0) {
            return Thread.State.TERMINATED;
        } else if ((threadStatus & JVMTI_THREAD_STATE_ALIVE) == 0) {
            return Thread.State.NEW;
        } else {
            return Thread.State.RUNNABLE;
        }
    }
}

java.util.concurrent.CountDownLatch複数のスレッドを並列に実行する、すべてのスレッドを完了した後、メインスレッドを実行します。(並列スレッドがタスクを完了するまで、メインスレッドはブロックされます。)

public class MainThread_Wait_TillWorkerThreadsComplete {
    public static void main(String[] args) throws InterruptedException {
        System.out.println("Main Thread Started...");
        // countDown() should be called 4 time to make count 0. So, that await() will release the blocking threads.
        int latchGroupCount = 4;
        CountDownLatch latch = new CountDownLatch(latchGroupCount);
        new Thread(new Task(2, latch), "T1").start();
        new Thread(new Task(7, latch), "T2").start();
        new Thread(new Task(5, latch), "T3").start();
        new Thread(new Task(4, latch), "T4").start();

        //latch.countDown(); // Decrements the count of the latch group.

        // await() method block until the current count reaches to zero
        latch.await(); // block until latchGroupCount is 0
        System.out.println("Main Thread completed.");
    }
}
class Task extends Thread {
    CountDownLatch latch;
    int iterations = 10;
    public Task(int iterations, CountDownLatch latch) {
        this.iterations = iterations;
        this.latch = latch;
    }
    @Override
    public void run() {
        String threadName = Thread.currentThread().getName();
        System.out.println(threadName + " : Started Task...");
        for (int i = 0; i < iterations; i++) {
            System.out.println(threadName + " : "+ i);
            sleep(1);
        }
        System.out.println(threadName + " : Completed Task");
        latch.countDown(); // Decrements the count of the latch,
    }
    public void sleep(int sec) {
        try {
            Thread.sleep(1000 * sec);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

@関連項目


A thread is alive if it has been started and has not yet died。どういう意味で死んだの?状態はTERMINATED
崑崙

2

終了したら、スレッドに他のスレッドに通知してもらいます。このようにして、何が起こっているのかを常に正確に知ることができます。


1

isAlive()、getState()メソッドを示すコードを書くことを考えましたが、この例では、スレッドが終了(死ぬ)していることを監視しています。

package Threads;

import java.util.concurrent.TimeUnit;

public class ThreadRunning {


    static class MyRunnable implements Runnable {

        private void method1() {

            for(int i=0;i<3;i++){
                try{
                    TimeUnit.SECONDS.sleep(1);
                }catch(InterruptedException ex){}
                method2();
            }
            System.out.println("Existing Method1");
        }

        private void method2() {

            for(int i=0;i<2;i++){
                try{
                    TimeUnit.SECONDS.sleep(1);
                }catch(InterruptedException ex){}
                method3();
            }
            System.out.println("Existing Method2");
        }

        private void method3() {

            for(int i=0;i<1;i++){
                try{
                    TimeUnit.SECONDS.sleep(1);
                }catch(InterruptedException ex){}

            }
            System.out.println("Existing Method3");
        }

        public void run(){
            method1();
        }
    }


    public static void main(String[] args) {

        MyRunnable runMe=new MyRunnable();

        Thread aThread=new Thread(runMe,"Thread A");

        aThread.start();

        monitorThread(aThread);

    }

    public static void monitorThread(Thread monitorMe) {

        while(monitorMe.isAlive())
         {
         try{   
           StackTraceElement[] threadStacktrace=monitorMe.getStackTrace();

           System.out.println(monitorMe.getName() +" is Alive and it's state ="+monitorMe.getState()+" ||  Execution is in method : ("+threadStacktrace[0].getClassName()+"::"+threadStacktrace[0].getMethodName()+") @line"+threadStacktrace[0].getLineNumber());  

               TimeUnit.MILLISECONDS.sleep(700);
           }catch(Exception ex){}
    /* since threadStacktrace may be empty upon reference since Thread A may be terminated after the monitorMe.getStackTrace(); call*/
         }
        System.out.println(monitorMe.getName()+" is dead and its state ="+monitorMe.getState());
    }


}

1

使用できます:Thread.currentThread().isAlive();。このスレッドが生きている場合はtrueを返します。それ以外の場合はfalse


1

Thread.currentThread()。isAlive()を使用して、スレッドが生きているかどうか確認します[出力はtrueである必要があります]。これは、スレッドがrun()メソッド内でコードを実行していることを意味するか、Thread.currentThread.getState()メソッドを使用しスレッドの正確な状態

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.