A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/javaexamples/thread_setpri.htm below:

How to set the priority of a thread in Java

How to set the priority of a thread in Java Problem Description

How to set the priority of a thread?

Solution

Following example how to set the priority of a thread with the help of.

public class new_file {
   public static void main(String[] args) throws Exception {
      Thread thread1 = new Thread();
      Thread thread2 = new Thread();
      thread1.setPriority(Thread.MAX_PRIORITY);
      thread2.setPriority(Thread.MIN_PRIORITY);
      thread1.start();
      thread2.start();
      thread1.join();
      thread2.join();
      System.out.println("The priority has been set.");
   }
}
Result

The above code sample will produce the following result.

The priority has been set.

java_threading.htm


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4