可以通過Thread類的getName()方法來獲取當前線程的名稱。
示例代碼如下:
public class Main {
public static void main(String[] args) {
Thread currentThread = Thread.currentThread();
String threadName = currentThread.getName();
System.out.println("當前線程名稱:" + threadName);
}
}
運行結果:
當前線程名稱:main