Program to set the priority of a thread in Java
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.");
}
}
Output:
The priority has been set.
