class ThDemo extends Thread { public void run() { System.out.println("Priority of thread is: "+Thread.currentThread().getPriority()); } } public class Main { public static void main(String args[]) { ThDemo d1=new ThDemo(); d1.start(); } }
Priority of thread is: 5