Upload files to "OOP/Java/Lab/Week11"
This commit is contained in:
parent
f263392866
commit
6480627716
34
OOP/Java/Lab/Week11/UseSetPriority.java
Normal file
34
OOP/Java/Lab/Week11/UseSetPriority.java
Normal file
@ -0,0 +1,34 @@
|
||||
class ThreadDemo extends Thread{
|
||||
public void run()
|
||||
{
|
||||
System.out.println("Inside run method");
|
||||
}
|
||||
}
|
||||
|
||||
class UseSetPriority {
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
ThreadDemo t1 = new ThreadDemo();
|
||||
ThreadDemo t2 = new ThreadDemo();
|
||||
ThreadDemo t3 = new ThreadDemo();
|
||||
|
||||
System.out.println("t1 thread priority : "+ t1.getPriority());
|
||||
System.out.println("t2 thread priority : "+ t2.getPriority());
|
||||
System.out.println("t3 thread priority : "+ t3.getPriority());
|
||||
|
||||
t1.setPriority(2);
|
||||
t2.setPriority(5);
|
||||
t3.setPriority(8);
|
||||
|
||||
System.out.println("t1 thread priority : "+ t1.getPriority());
|
||||
System.out.println("t2 thread priority : "+ t2.getPriority());
|
||||
System.out.println("t3 thread priority : "+ t3.getPriority());
|
||||
System.out.println("Currently Executing Thread : "+ Thread.currentThread().getName());
|
||||
|
||||
System.out.println("Main thread priority : "+ Thread.currentThread().getPriority());
|
||||
Thread.currentThread().setPriority(10);
|
||||
|
||||
System.out.println("Main thread priority : "+ Thread.currentThread().getPriority());
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user