web-dev-qa-db-ja.com

スレッドプールからスレッドIDを取得するには?

タスクを送信する固定スレッドプールがあります(5スレッドに制限されます)。これらの5スレッドのどれが自分のタスクを実行するかを見つけるにはどうすればよいですか(「スレッド#3 of 5がこのタスクを実行している」など)。

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?
    }
}
123
serg

Thread.currentThread()の使用:

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

受け入れられた答えは、a thread 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

モジュロ演算を使用した微調整により、「スレッドX/Y」を正しく実行できます。

// 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 
25
Burhan Ali

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

6
Vineet Reynolds

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

1
Justin Ethier

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

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
Vitaliy Polchuk

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

Thread t = Thread.currentThread();

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

スレッドIDの取得:

long tId = t.getId();

スレッド名の取得:

String tName = t.getName();
0
Serg.Stankov