執行緒優先順序


每個執行緒都有一個優先順序。優先順序是由110之間的數位表示。在大多數情況下,執行緒排程程式根據執行緒的優先順序(稱為搶占式排程)來排程執行緒。 但它不能保證,因為它依賴於JVM規範,它選擇哪種排程。

Thread類中定義的3個常數:

  • public static int MIN_PRIORITY
  • public static int NORM_PRIORITY
  • public static int MAX_PRIORITY

執行緒的預設優先順序為5(NORM_PRIORITY)。 MIN_PRIORITY的值為1MAX_PRIORITY的值為10

執行緒優先順序範例:

package com.yiibai;

class TestMultiPriority1 extends Thread {
    public void run() {
        System.out.println("running thread name is:" + Thread.currentThread().getName());
        System.out.println("running thread priority is:" + Thread.currentThread().getPriority());

    }

    public static void main(String args[]) {
        TestMultiPriority1 m1 = new TestMultiPriority1();
        TestMultiPriority1 m2 = new TestMultiPriority1();
        m1.setPriority(Thread.MIN_PRIORITY);
        m2.setPriority(Thread.MAX_PRIORITY);
        m1.start();
        m2.start();

    }
}

執行上面範例程式碼,得到以下結果:

running thread name is:Thread-0
running thread name is:Thread-1
running thread priority is:1
running thread priority is:10