Pessoall,
estou com um problema.
Tenho em uma classe 3 Threads.
Thread t1 = new Thread(this);
Thread t2 = new Thread(this);
Thread t3 = new Thread(this);
e faço Também
t1.setName("t1");
t2.setName("t2");
t3.setName("t3");
como faço para identificá-las no método run()?
Como vou saber a hora de fazer uma e outra?
OBrigado. 