當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Thread getId()用法及代碼示例


getId() 方法用於返回線程標識符。線程 ID 是在創建線程時生成的唯一正數。

線程 ID 在其生命周期內保持不變。當線程終止時,線程的 ID 可以重複使用。

用法

public long getId()

返回

This method returns the thread's ID.

示例

public class GetIdExample extends Thread
{  
    public void run()
    {  
        System.out.println("running...");  
    }  
    public static void main(String args[])
    {  
        // creating one thread
        GetIdExample t1=new GetIdExample();  
        // Returns the identifier of this Thread
        System.out.println("Name of t1:"+t1.getName());
        System.out.println("Id of t1:"+t1.getId()); 
        // Start the thread 
        t1.start();
    }  
}

輸出:

Name of t1:Thread-0
Id of t1:21
running...






相關用法


注:本文由純淨天空篩選整理自 Java Thread getId() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。