當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Thread getPriority()用法及代碼示例


線程類的 getPriority() 方法用於檢查線程的優先級。當我們創建一個線程時,它有一些優先級分配給它。線程的優先級可以由 JVM 指定,也可以由程序員在創建線程時顯式指定。

線程的優先級在 1 到 10 的範圍內。線程的默認優先級是 5。

用法

public final int getPriority()

返回

它返回線程的優先級。

示例

public class JavaGetPriorityExp extends Thread
{  
    public void run()
    {  
        System.out.println("running thread name is:"+Thread.currentThread().getName());  
    }  
    public static void main(String args[])
    {  
        // creating two threads
        JavaGetPriorityExp t1 = new JavaGetPriorityExp();  
        JavaGetPriorityExp t2 = new JavaGetPriorityExp();  
        // print the default priority value of thread
        System.out.println("t1 thread priority:" + t1.getPriority()); 
        System.out.println("t2 thread priority:" + t2.getPriority());
        // this will call the run() method
        t1.start();  
        t2.start();
    }  
}

輸出:

t1 thread priority:5
t2 thread priority:5
running thread name is:Thread-0
running thread name is:Thread-1






相關用法


注:本文由純淨天空篩選整理自 Java Thread getPriority() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。