スレッドプールからスレッドIDを取得する方法


131

タスクを送信する固定スレッドプールがあります(5スレッドに制限されています)。これらの5つのスレッドの1つが私のタスクを実行していることをどのように確認できますか(「5番目のスレッド#3がこのタスクを実行している」など)。

ExecutorService taskExecutor = Executors.newFixedThreadPool(5);

//in infinite loop:
taskExecutor.execute(new MyTask());
....

private class MyTask implements Runnable {
    public void run() {
        logger.debug("Thread # XXX is doing this task");//how to get thread id?
    }
}

回答:


230

使用Thread.currentThread()

private class MyTask implements Runnable {
    public void run() {
        long threadId = Thread.currentThread().getId();
        logger.debug("Thread # " + threadId + " is doing this task");
    }
}

3
これは実際には望ましい答えではありません。% numThreads代わりに使用する必要があります
petrbel '06 / 11/06

2
@petrbel彼は質問のタイトルに完全に答えており、OPが「スレッド#3 of 5のようなもの」を要求するとき、スレッドIDは私の意見では十分に近いです。
CorayThan

の出力例getId()14291where as getName()がを与える場所であることに注意してくださいpool-29-thread-7
Joshua Pinter、

26

承認された回答はスレッドIDの取得に関する質問に回答しますが、「Thread X of Y」メッセージを実行できません。スレッドIDはスレッド間で一意ですが、必ずしも0または1から始まるとは限りません。

質問に一致する例を次に示します。

import java.util.concurrent.*;
class ThreadIdTest {

  public static void main(String[] args) {

    final int numThreads = 5;
    ExecutorService exec = Executors.newFixedThreadPool(numThreads);

    for (int i=0; i<10; i++) {
      exec.execute(new Runnable() {
        public void run() {
          long threadId = Thread.currentThread().getId();
          System.out.println("I am thread " + threadId + " of " + numThreads);
        }
      });
    }

    exec.shutdown();
  }
}

そして出力:

burhan@orion:/dev/shm$ javac ThreadIdTest.java && java ThreadIdTest
I am thread 8 of 5
I am thread 9 of 5
I am thread 10 of 5
I am thread 8 of 5
I am thread 9 of 5
I am thread 11 of 5
I am thread 8 of 5
I am thread 9 of 5
I am thread 10 of 5
I am thread 12 of 5

モジュロ演算を使用するわずかな調整により、「YのスレッドX」を正しく実行できます。

// modulo gives zero-based results hence the +1
long threadId = Thread.currentThread().getId()%numThreads +1;

新しい結果:

burhan@orion:/dev/shm$ javac ThreadIdTest.java && java ThreadIdTest  
I am thread 2 of 5 
I am thread 3 of 5 
I am thread 3 of 5 
I am thread 3 of 5 
I am thread 5 of 5 
I am thread 1 of 5 
I am thread 4 of 5 
I am thread 1 of 5 
I am thread 2 of 5 
I am thread 3 of 5 

5
JavaスレッドIDは連続していることが保証されていますか?そうでない場合、あなたのモジュロは正しく動作しません。
ブライアンゴードン

@BrianGordonわからない保証について、しかし、コードが複数の内部カウンタをインクリメントよりも何にも思わ:hg.openjdk.java.net/jdk8/jdk8/jdk/file/687fd7c7986d/src/share/...
バーハン・アリ

6
したがって、2つのスレッドプールが同時に初期化された場合、それらのスレッドプールの1つのスレッドのIDは、たとえば、1、4、5、6、7である可能性があり、その場合、同じ "I amスレッドn of 5 "メッセージ。
ブライアンゴードン

@BrianGordon Thread.nextThreadID()は同期されているので、これは問題にはなりませんよね?
Matheus Azevedo 2016年

@MatheusAzevedoそれはそれとは何の関係もありません。
ブライアンゴードン

6

Thread.getCurrentThread.getId()を使用できますが、ロガーによって管理されているLogRecordオブジェクトにすでにスレッドID がある場合に、なぜそれを実行するのでしょうか。ログメッセージのスレッドIDを記録する構成がどこかにないようです。


1

クラスがThreadから継承する場合、メソッドgetNameを使用しsetNameて各スレッドに名前を付けることができます。それ以外の場合は、nameフィールドをMyTaskに追加して、コンストラクタで初期化するだけです。


1

ロギングを使用している場合は、スレッド名が役立ちます。スレッドファクトリはこれに役立ちます。

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;

public class Main {

    static Logger LOG = LoggerFactory.getLogger(Main.class);

    static class MyTask implements Runnable {
        public void run() {
            LOG.info("A pool thread is doing this task");
        }
    }

    public static void main(String[] args) {
        ExecutorService taskExecutor = Executors.newFixedThreadPool(5, new MyThreadFactory());
        taskExecutor.execute(new MyTask());
        taskExecutor.shutdown();
    }
}

class MyThreadFactory implements ThreadFactory {
    private int counter;
    public Thread newThread(Runnable r) {
        return new Thread(r, "My thread # " + counter++);
    }
}

出力:

[   My thread # 0] Main         INFO  A pool thread is doing this task

1

現在のスレッドを取得する方法があります:

Thread t = Thread.currentThread();

Threadクラスオブジェクト(t)を取得したら、Threadクラスのメソッドを使用して、必要な情報を取得できます。

スレッドID取得:

long tId = t.getId(); // e.g. 14291

スレッド名の取得:

String tName = t.getName(); // e.g. "pool-29-thread-7"
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.