要打印线程ID,可以使用Thread类的静态方法currentThread()获取当前正在执行的线程对象,然后调用其方法getId()来获取线程的ID,最后进行打印操作。
示例代码如下:
public class PrintThreadId {
public static void main(String[] args) {
Thread thread = Thread.currentThread();
long threadId = thread.getId();
System.out.println("当前线程的ID是:" + threadId);
}
}
运行以上代码,将输出当前线程的ID。