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

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

java.lang.Thread.setPriority() 方法改變該線程的優先級。

聲明

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

public final void setPriority(int newPriority)

參數

  • newPriority -- 這是優先考慮這個線程設置為這個值。

返回值

此方法不返回任何值。

異常

  • IllegalArgumentException -- 如果優先級不是在範圍MIN_PRIORITY到MAX_PRIORITY。

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

例子

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

package com.yiibai;

import java.lang.*;

public class ThreadDemo {

   public static void main(String[] args) {

     Thread t = Thread.currentThread();
     t.setName("Admin Thread");
     // set thread priority to 1
     t.setPriority(1);
     
     // prints the current thread
     System.out.println("Thread = " + t);
    
     int count = Thread.activeCount();
     System.out.println("currently active threads = " + count);
   }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

Thread = Thread[Admin Thread,1,main]
currently active threads = 1