线程类的 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 getContextClassLoader()用法及代码示例
- Java Thread getThreadGroup()用法及代码示例
- Java Thread getId()用法及代码示例
- Java Thread getDefaultUncaughtExceptionHandler()用法及代码示例
- Java Thread getState()用法及代码示例
- Java Thread getName()用法及代码示例
- Java Thread getStackTrace()用法及代码示例
- Java Thread toString()用法及代码示例
- Java Thread interrupted()用法及代码示例
- Java Thread setDefaultUncaughtExceptionHandler()用法及代码示例
- Java Thread suspend()用法及代码示例
- Java Thread destroy()用法及代码示例
- Java Thread holdLock()用法及代码示例
- Java Thread setContextClassLoader()用法及代码示例
- Java Thread sleep()用法及代码示例
- Java Thread isInterrupted()用法及代码示例
- Java Thread enumerate()用法及代码示例
- Java Thread notify()用法及代码示例
- Java Thread resume()用法及代码示例
- Java Thread activeCount()用法及代码示例
注:本文由纯净天空筛选整理自 Java Thread getPriority() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。