Odpowiedź zaakceptowanej odpowiedzi na pytanie o coraz to id wątku, ale nie pozwalają robić „Temat X z Y” wiadomości. Identyfikatory wątków są unikalne we wszystkich wątkach, ale niekoniecznie muszą zaczynać się od 0 lub 1.
Oto przykład pasujący do pytania:
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();
}
}
i wyjście:
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
Niewielka zmiana przy użyciu arytmetyki modulo pozwoli ci poprawnie wykonać „wątek X z Y”:
long threadId = Thread.currentThread().getId()%numThreads +1;
Nowe wyniki:
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
% numThreads
zamiast tego należy użyć