Java 线程 getPriority() 方法



描述

Java Thread getPriority() 方法返回此线程的优先级。

声明

以下是 java.lang.Thread.getPriority() 方法的声明

public final int getPriority()

参数

返回值

此方法返回此线程的优先级。

异常

示例:获取线程的优先级

以下示例演示了 Java Thread getPriority() 方法的使用。在此示例中,我们使用 main 方法中的 activeThread() 方法检索当前活动的线程,并使用 setPriority() 方法将优先级设置为 1,然后使用 getPriority() 方法打印线程优先级。

package com.tutorialspoint;

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);
      System.out.println("Thread Priority = " + t.getPriority());
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Thread = Thread[#1,Admin Thread,1,main]
Thread Priority = 1

示例:获取线程的优先级

以下示例演示了 Java Thread getPriority() 方法的使用。在此示例中,我们使用 main 方法中的 activeThread() 方法检索当前活动的线程,并使用 setPriority() 方法将优先级设置为 MAX_PRIORITY,然后使用 getPriority() 方法打印线程优先级。

package com.tutorialspoint;

public class ThreadDemo {

   public static void main(String[] args) {

      Thread t = Thread.currentThread();
      t.setName("Admin Thread");
      // set thread priority to MAX_PRIORITY
      t.setPriority(Thread.MAX_PRIORITY);
     
      // prints the current thread
      System.out.println("Thread = " + t);
      System.out.println("Thread Priority = " + t.getPriority());
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Thread = Thread[#1,Admin Thread,10,main]
Thread Priority = 10

示例:获取线程的最低优先级

以下示例演示了 Java Thread getPriority() 方法的使用。在此示例中,我们使用 main 方法中的 activeThread() 方法检索当前活动的线程,并使用 setPriority() 方法将优先级设置为 MIN_PRIORITY,然后使用 getPriority() 方法打印线程优先级。

package com.tutorialspoint;

public class ThreadDemo {

   public static void main(String[] args) {

      Thread t = Thread.currentThread();
      t.setName("Admin Thread");
      // set thread priority to MIN_PRIORITY
      t.setPriority(Thread.MIN_PRIORITY);
     
      // prints the current thread
      System.out.println("Thread = " + t);
      System.out.println("Thread Priority = " + t.getPriority());
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Thread = Thread[#1,Admin Thread,1,main]
Thread Priority = 1
java_lang_thread.htm
广告