JAVA: Thread Priority di Multithreading

From OnnoWiki
Revision as of 09:10, 12 May 2022 by Onnowpurbo (talk | contribs)
Jump to navigation Jump to search

Seperti yang telah kita ketahui, Java sepenuhnya object-oriented bekerja dalam lingkungan multithreading di mana penjadwal thread menetapkan prosesor ke thread berdasarkan prioritas thread . Setiap kali kita membuat thread di Java, selalu ada prioritas yang ditetapkan padanya. Prioritas dapat diberikan oleh JVM saat membuat thread atau dapat diberikan oleh programmer secara eksplisit.

Prioritas dalam thread adalah sebuah konsep di mana setiap thread memiliki prioritas yang dalam bahasa awam bisa dikatakan setiap object memiliki prioritas di sini yang diwakili oleh angka mulai dari 1 hingga 10.

  • Default priority diatur ke 5 sebagai pengecualian.
  • Minimum priority diatur ke 1.
  • Maximum priority diatur ke 10.

Berikut 3 konstanta yang didefinisikan di dalamnya yaitu sebagai berikut:

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

Mari kita diskusikan dengan sebuah contoh untuk mengetahui bagaimana pekerjaan itu dijalankan secara internal. Di sini kita akan menggunakan pengetahuan yang dikumpulkan di atas sebagai berikut:

  • Kita akan menggunakan method currentThread() untuk mendapatkan nama thread saat ini. Pengguna juga dapat menggunakan method setName() jika dia ingin membuat nama thread sesuai pilihan untuk tujuan pemahaman.
  • method getName() akan digunakan untuk mendapatkan nama thread.

Nilai prioritas yang diterima untuk thread berada dalam kisaran 1 hingga 10.

Mari kita bahas cara mendapatkan dan menetapkan prioritas thread di java.

  • public final int getPriority(): java.lang.Thread.getPriority() method mengembalikan prioritas dari thread yang diberikan.
  • public final void setPriority(int newPriority): java.lang.Thread.setPriority() method mengubah prioritas thread menjadi nilai newPriority. Method ini melempar IllegalArgumentException jika nilai parameter newPriority melampaui batas minimum(1) dan maksimum(10).


Contoh

// Java Program to Illustrate Priorities in Multithreading
// via help of getPriority() and setPriority() method
 
// Importing required classes
import java.lang.*;
 
// Main class
class ThreadDemo extends Thread {
 
    // Method 1
    // run() method for the thread that is called
    // as soon as start() is invoked for thread in main()
    public void run()
    {
        // Print statement
        System.out.println("Inside run method");
    }
 
    // Main driver method
    public static void main(String[] args)
    {
        // Creating random threads
        // with the help of above class
        ThreadDemo t1 = new ThreadDemo();
        ThreadDemo t2 = new ThreadDemo();
        ThreadDemo t3 = new ThreadDemo();
 
        // Thread 1
        // Display the priority of above thread
        // using getPriority() method
        System.out.println("t1 thread priority : "
                           + t1.getPriority());
 
        // Thread 1
        // Display the priority of above thread
        System.out.println("t2 thread priority : "
                           + t2.getPriority());
 
        // Thread 3
        System.out.println("t3 thread priority : "
                           + t3.getPriority());
 
        // Setting priorities of above threads by
        // passing integer arguments
        t1.setPriority(2);
        t2.setPriority(5);
        t3.setPriority(8);
 
        // t3.setPriority(21); will throw
        // IllegalArgumentException
 
        // 2
        System.out.println("t1 thread priority : "
                           + t1.getPriority());
 
        // 5
        System.out.println("t2 thread priority : "
                           + t2.getPriority());
 
        // 8
        System.out.println("t3 thread priority : "
                           + t3.getPriority());
 
        // Main thread
 
        // Displays the name of
        // currently executing Thread
        System.out.println(
            "Currently Executing Thread : "
            + Thread.currentThread().getName());
 
        System.out.println(
            "Main thread priority : "
            + Thread.currentThread().getPriority());
 
        // Main thread priority is set to 10
        Thread.currentThread().setPriority(10);
 
        System.out.println(
            "Main thread priority : "
            + Thread.currentThread().getPriority());
    }
}

Output

t1 thread priority : 5
t2 thread priority : 5
t3 thread priority : 5
t1 thread priority : 2
t2 thread priority : 5
t3 thread priority : 8
Currently Executing Thread : main
Main thread priority : 5
Main thread priority : 10

Output explanation:

  • Thread with the highest priority will get an execution chance prior to other threads. Suppose there are 3 threads t1, t2, and t3 with priorities 4, 6, and 1. So, thread t2 will execute first based on maximum priority 6 after that t1 will execute and then t3.
  • The default priority for the main thread is always 5, it can be changed later. The default priority for all other threads depends on the priority of the parent thread.

Now geeks you must be wondering out what if we do assign the same priorities to threads than what will happen. All the processing in order to look after threads is carried with help of the thread scheduler. One can refer to the below example of what will happen if the priorities are set to the same and later onwards we will discuss it as an output explanation to have a better understanding conceptually and practically.

Penjelasan keluaran:

  • Thread dengan prioritas tertinggi akan mendapatkan kesempatan eksekusi sebelum thread lainnya. Misalkan ada 3 thread t1, t2, dan t3 dengan prioritas 4, 6, dan 1. Jadi, thread t2 akan dieksekusi terlebih dahulu berdasarkan prioritas maksimum 6 setelah itu t1 akan dieksekusi dan kemudian t3.
  • Prioritas default untuk utas utama selalu 5, dapat diubah nanti. Prioritas default untuk semua utas lainnya bergantung pada prioritas utas induk.

Sekarang geeks Anda pasti bertanya-tanya bagaimana jika kami menetapkan prioritas yang sama untuk utas daripada apa yang akan terjadi. Semua pemrosesan untuk menjaga utas dilakukan dengan bantuan penjadwal utas. Kita dapat merujuk pada contoh di bawah ini tentang apa yang akan terjadi jika prioritas ditetapkan sama dan selanjutnya kita akan membahasnya sebagai penjelasan keluaran untuk memiliki pemahaman yang lebih baik secara konseptual dan praktis.


Contoh

// Java program to demonstrate that a Child thread
// Getting Same Priority as Parent thread
 
// Importing all classes from java.lang package
import java.lang.*;
 
// Main class
// ThreadDemo
// Extending Thread class
class GFG extends Thread {
 
    // Method 1
    // run() method for the thread that is
    // invoked as threads are started
    public void run()
    {
        // Print statement
        System.out.println("Inside run method");
    }
 
    // Method 2
    // Main driver method
    public static void main(String[] args)
    {
        // main thread priority is set to 6 now
        Thread.currentThread().setPriority(6);
 
        // Current thread is accessed
        // using currentThread() method
 
        // Print and display main thread priority
        // using getPriority() method of Thread class
        System.out.println(
            "main thread priority : "
            + Thread.currentThread().getPriority());
 
        // Creating a thread by creating object inside
        // main()
        GFG t1 = new GFG();
 
        // t1 thread is child of main thread
        // so t1 thread will also have priority 6
 
        // Print and display priority of current thread
        System.out.println("t1 thread priority : "
                           + t1.getPriority());
    }
}

Output

main thread priority : 6
t1 thread priority : 6

Output explanation:

  • If two threads have the same priority then we can’t expect which thread will execute first. It depends on the thread scheduler’s algorithm(Round-Robin, First Come First Serve, etc)
  • If we are using thread priority for thread scheduling then we should always keep in mind that the underlying platform should provide support for scheduling based on thread priority.


Penjelasan keluaran:

  • Jika dua utas memiliki prioritas yang sama maka kami tidak dapat mengharapkan utas mana yang akan dieksekusi lebih dulu. Itu tergantung pada algoritma penjadwal utas (Round-Robin, First Come First Serve, dll)
  • Jika kita menggunakan prioritas utas untuk penjadwalan utas, maka kita harus selalu ingat bahwa platform yang mendasarinya harus memberikan dukungan untuk penjadwalan berdasarkan prioritas utas.


Referensi