JAVA中获得当前执行线程的名称

在多线程开发中常常我们都需要检查当前方法存在于哪个线程序中,这时候就需要获取线程名了;

1
System.out.println(Thread.currentThread().getName());