Get Thread name : Thread Attributes « Threads « Java






Get Thread name

Get Thread name
 

public class TwoThreadGetName extends Thread {
  public void run() {
    for (int i = 0; i < 10; i++) {
      printMsg();
    }
  }

  public void printMsg() {
    Thread t = Thread.currentThread();
    String name = t.getName();
    System.out.println("name=" + name);
  }

  public static void main(String[] args) {
    TwoThreadGetName tt = new TwoThreadGetName();
    tt.start();

    for (int i = 0; i < 10; i++) {
      tt.printMsg();
    }
  }
}
           
         
  








Related examples in the same category

1.Thread nameThread name
2.Thread PriorityThread Priority
3.Set Thread PrioritySet Thread Priority
4.Thread Interrupt when calculating PiThread Interrupt when calculating Pi
5.Thread pending and interruptThread pending and interrupt
6.Thread interrupt resetThread interrupt reset
7.Thread interrupt checkThread interrupt check
8.Thread priority informationThread priority information
9.Thread general interruptThread general interrupt
10.Thread IDThread ID
11.ThreadGroup EnumerateThreadGroup Enumerate
12.Utilities to manage thread ids