在当前类利用Thread的静态方法就能获取到当前执行线程的信息:
Thread thread = Thread.currentThread();
thread.getId();
thread.getName();...
多线程情况下,可以知道正在执行这段代码的线程信息!
在当前类利用Thread的静态方法就能获取到当前执行线程的信息:
Thread thread = Thread.currentThread();
thread.getId();
thread.getName();...