package javaapplication1;
public class JavaApplication1 {
public static void main(String[] args) {
Thread currentThread = Thread.currentThread();
System.out.println(currentThread);
currentThread.setName("Ted The Thread");
System.out.println("Thread Name: " + currentThread.getName());
System.out.println(currentThread);
}
}
/*
run:
Thread[main,5,main]
Thread Name: Ted The Thread
Thread[Ted The Thread,5,main]
*/