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]