Heim  >  Artikel  >  Java  >  Welche Bedeutung hat die Thread-Priorität in Java?

Welche Bedeutung hat die Thread-Priorität in Java?

王林
王林nach vorne
2023-08-27 08:25:06887Durchsuche

Welche Bedeutung hat die Thread-Priorität in Java?

In einer Multithread-Anwendung wird jedem Thread eine Priorität zugewiesen. Prozessoren werden Threads vom Thread-Scheduler basierend auf ihrer Priorität zugewiesen (d. h. dem Thread mit der höchsten Priorität wird zuerst ein Prozessor zugewiesen usw.). Die Standardpriorität eines Threads ist 5. Wir können die Methode getPriority() der Thread-Klasse verwenden, um die Priorität des Threads abzurufen.

In der Thread-Klasse werden drei statische Werte definiert, um die Priorität des Threads darzustellen:

MAX_PRIORITY

Dies ist die höchste Thread-Priorität mit einem Wert von 10.

NORM_PRIORITY

Dies ist die Standard- Thread-Priorität mit einem Wert von 5.

MIN_PRIORITY

Dies ist die niedrigste Thread-Priorität mit einem Wert von 1.

Syntax

public final int getPriority()

Beispiel

public class ThreadPriorityTest extends Thread {
   public static void main(String[]args) {
      ThreadPriorityTest thread1 = new ThreadPriorityTest();
      ThreadPriorityTest thread2 = new ThreadPriorityTest();
      ThreadPriorityTest thread3 = new ThreadPriorityTest();
      System.out.println("Default thread priority of thread1: " + thread1.<strong>getPriority</strong>());
      System.out.println("Default thread priority of thread2: " + thread2.<strong>getPriority</strong>());
      System.out.println("Default thread priority of thread3: " + thread3.<strong>getPriority</strong>());
      thread1.setPriority(8);
      thread2.setPriority(3);
      thread3.setPriority(6);
      System.out.println("New thread priority of thread1: " + thread1.<strong>getPriority()</strong>);
      System.out.println("New thread priority of thread2: " + thread2.<strong>getPriority()</strong>);
      System.out.println("New thread priority of thread3: " + thread3.<strong>getPriority()</strong>);
   }
}

Ausgabe

Default thread priority of thread1: 5
Default thread priority of thread2: 5
Default thread priority of thread3: 5
New thread priority of thread1: 8
New thread priority of thread2: 3
New thread priority of thread3: 6

Das obige ist der detaillierte Inhalt vonWelche Bedeutung hat die Thread-Priorität in Java?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:tutorialspoint.com. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen