当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。