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


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


線程類的 toString() 方法用於返回線程的字符串表示,包括線程名稱、優先級和線程組。

用法

public String toString()

返回

此方法返回線程的字符串表示形式。

示例

public class JavaToStringExp implements Runnable 
{
    Thread t;
    JavaToStringExp() 
    {
        t = new Thread(this);
        // this will call run() function
        t.start();
    }
    public void run() 
    {
        // returns a string representation of this thread 
        System.out.println(t.toString());
    }
    public static void main(String[] args) 
    {
        new JavaToStringExp();
    }
}

輸出:

Thread[Thread-0,5,main]






相關用法


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