位置:首頁 > Java技術 > java.lang > java.lang.Thread.setName()方法實例

java.lang.Thread.setName()方法實例

java.lang.Thread.setName() 方法改變參數名等於該線程的名稱。

聲明

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

public final void setName(String name)

參數

  • name -- 這是用於該線程的新名稱

返回值

此方法不返回任何值。

異常

  • SecurityException -- 如果當前線程不能修改該線程。

例子

下麵的例子顯示java.lang.Thread.setName()方法的使用。

package com.yiibai;

import java.lang.*;

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