You can assign a name to thread instance by using the setName() method and get the name of the thread using the getName() method. The naming support is also available as a constructor of theThread class such as Thread(String name) and Thread(Runnable target, String name).
public class ThreadNameDemo extends Thread {
public ThreadNameDemo() {
}
public ThreadNameDemo(String name) {
super(name);
}
@Override
public void run() {
//
// Call getName() method to get the thread name of this
// thread object.
//
System.out.println("Running [" + this.getName() + "]");
}
public static void main(String[] args) {
Thread thread1 = new ThreadNameDemo();
thread1.setName("FOX");
thread1.start();
Thread thread2 = new ThreadNameDemo("DOG");
thread2.start();
}
}
Monday, March 5, 2012
How do I set and get the name of a thread in java?
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment