Thread
類的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]