Java Thread toString()方法
java.lang.Thread.toString() 方法返回当前线程的字符串表示形式,包括线程名称,优先级和线程组。
1 语法
public String toString()
2 参数
无
3 返回值
此方法返回该线程的字符串表示形式。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.lang.Thread.toString()方法的例子
*/
import java.lang.*;
public class Demo implements Runnable {
Thread t;
Demo() {
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 Demo();
}
}
输出结果为:
Thread[Thread-0,5,main]
热门文章
优秀文章