在Java中,線程優先級可以通過setPriority()
方法來設置。優先級是一個整數值,范圍從1到10,其中1是最低優先級,10是最高優先級。默認情況下,所有線程都具有相同的優先級,即5。
下面是一個示例代碼,演示如何設置線程的優先級:
public class ThreadPriorityExample {
public static void main(String[] args) {
Thread thread1 = new MyThread("Thread 1");
Thread thread2 = new MyThread("Thread 2");
thread1.setPriority(8);
thread2.setPriority(3);
thread1.start();
thread2.start();
}
}
class MyThread extends Thread {
public MyThread(String name) {
super(name);
}
@Override
public void run() {
System.out.println(getName() + " is running.");
}
}
在上面的示例中,我們創建了兩個線程thread1
和thread2
,然后分別使用setPriority()
方法設置它們的優先級為8和3。然后,我們啟動這兩個線程。根據線程優先級的設置,高優先級的線程可能會更頻繁地執行,但并不能保證一定會這樣。