Slip 21 - A) Write a java program to display name and priority of a Thread.

Solution:


class Slip21
{
public static void main(String a[])
{
String S;
int p;
Thread t = Thread.currentThread();
S = t.getName();
System.out.println("\n Current Thread name : "+S);
p = t.getPriority();
System.out.println("\n Current thread priority : "+p);
}
}

Post a Comment

0 Comments