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:
Dies ist die höchste Thread-Priorität mit einem Wert von 10.
Dies ist die Standard- Thread-Priorität mit einem Wert von 5.
Dies ist die niedrigste Thread-Priorität mit einem Wert von 1.
public final int getPriority()
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>); } }
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!