Java Thread getName()方法

java.lang.Thread.getName() 方法返回当前线程的名字。

1 语法

public final String getName()

2 参数

3 返回值

此方法返回该线程的名称。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.lang.Thread.getName()方法的例子
 */
import java.lang.*;

public class Demo implements Runnable {

    Thread t;
    Demo() {

        // thread created
        t = new Thread(this, "Admin Thread");

        // set thread priority
        t.setPriority(1);

        // print thread created
        System.out.println("thread  = " + t);

        // this will call run() function
        t.start();
    }

    public void run() {
        // returns the name of this Thread.
        System.out.println("Name = " + t.getName());
    }

    public static void main(String args[]) {
        new Demo();
    }
}

输出结果为:

thread  = Thread[Admin Thread,1,main]
Name = Admin Thread

热门文章

优秀文章