Java getId()方法的作用

2020-07-16 10:04:38
getId() 方法的作用非常簡單,就是取得正在執行執行緒的唯一標識。如下程式碼演示了 getId() 方法的使用:
package ch14;
public class Test15
{
    public static void main(String[] args)
    {
        Thread runThread=Thread.currentThread();
        System.out.println("當前執行緒名稱:"+runThread.getName());
        System.out.println("當前執行緒標識:"+runThread.getId());
    }
}

從如下所示的輸出結果來看,當前執行程式碼的執行緒名稱為 main,執行緒 id 值為 1。
當前執行緒名稱:main
當前執行緒標識:1