Java Thread setName() 方法



描述

Java Thread setName() 方法将此线程的名称更改为与参数 name 相同。

声明

以下是 java.lang.Thread.setName() 方法的声明

public final void setName(String name)

参数

name − 这是此线程的新名称

返回值

此方法不返回任何值。

异常

SecurityException − 如果当前线程无法修改此线程。

示例:设置线程的名称

以下示例演示了 Java Thread setName() 方法的使用。在此程序中,我们创建了一个类 ThreadDemo。在 main 方法中,使用 currentThread() 方法检索当前线程并打印出来。使用 setName() 更改线程的名称并再次打印,以及活动线程数。

package com.tutorialspoint;

public class ThreadDemo {

   public static void main(String[] args) {

      Thread t = Thread.currentThread();
      // prints the thread name
      System.out.println("Thread = " + t);
    
      // change the thread name
      t.setName("Admin Thread");
     
      // prints the thread after changing name
      System.out.println("Thread after changing name = " + t);
    
      int count = Thread.activeCount();
      System.out.println("currently active threads = " + count);
   }
} 

输出

让我们编译并运行以上程序,这将产生以下结果:

Thread = Thread[main,5,main]
Thread after changing name = Thread[Admin Thread,5,main]
currently active threads = 1
java_lang_thread.htm
广告