Java: Come ottenere l’ID filettatura è un filo del filo è un filo del pool?

Ha accettato la risposta Rispondi alla domanda su come ottenere un ID filettatura ma non lo fa Lasciati fare il “thread x e” i messaggi. Il filo degli identificatori è unico attraverso i fili, ma non necessariamente iniziare 0 o 1.
qui è un esempio di coincidenza della domanda:

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(); }}

e il risultato:

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

Una leggera regolazione utilizzando un modulo aritmetico ti consentirà di eseguire la “discussione x e” correttamente:

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

Nuovi risultati:

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 

Lascia un commento

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *