本文主要是介绍改变线程优先级的自测小程序,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
public class Priority extends Thread
{
//定义一个有参数的构造器,用于创建线程时指定name
public Priority(String name)
{
super(name);
}
public void run()
{
for( int i = 0;i<30; i ++)
{
System.out.println(getName()+",其优先级是:"+getPriority()+",循环变量的值为;"+i);
}
}
public static void main(String[] args)
{
//改变主线程的优先级,这样由main线程所创建的子线程的优先级默认都是6,所以程序直接输出low、high两个线程的优先级时应该看到6.
//接着程序将low线程的优先级设为Priority.MIN_PRIORITY,将high线程的优先级设置为Priority.MAX_PRIORITY
Thread.currentThread().setPriority(6);
for(int i=0; i < 30 ;i++)
{
if(i==10)
{
Priority low = new Priority("低级");
low.start();
System.out.println("创建之处的优先级:"+low.getPriority());
//设置该线程为最低优先级
low.setPriority(Thread.MIN_PRIORITY);
}
if( i ==20)
{
Priority high = new Priority("高级");
high.start();
System.out.println("创建之初的优先级:"+high.getPriority());
//设置该线程为最高优先级
high.setPriority(Thread.MAX_PRIORITY);
}
}
}
}
运行结果:
D:\mytest\Thread>javac Priority.java
D:\mytest\Thread>java Priority
创建之处的优先级:6
创建之初的优先级:6
低级,其优先级是:6,循环变量的值为;0
高级,其优先级是:6,循环变量的值为;0
高级,其优先级是:10,循环变量的值为;1
高级,其优先级是:10,循环变量的值为;2
高级,其优先级是:10,循环变量的值为;3
高级,其优先级是:10,循环变量的值为;4
高级,其优先级是:10,循环变量的值为;5
高级,其优先级是:10,循环变量的值为;6
高级,其优先级是:10,循环变量的值为;7
高级,其优先级是:10,循环变量的值为;8
高级,其优先级是:10,循环变量的值为;9
高级,其优先级是:10,循环变量的值为;10
高级,其优先级是:10,循环变量的值为;11
高级,其优先级是:10,循环变量的值为;12
高级,其优先级是:10,循环变量的值为;13
高级,其优先级是:10,循环变量的值为;14
高级,其优先级是:10,循环变量的值为;15
高级,其优先级是:10,循环变量的值为;16
高级,其优先级是:10,循环变量的值为;17
高级,其优先级是:10,循环变量的值为;18
高级,其优先级是:10,循环变量的值为;19
高级,其优先级是:10,循环变量的值为;20
高级,其优先级是:10,循环变量的值为;21
高级,其优先级是:10,循环变量的值为;22
高级,其优先级是:10,循环变量的值为;23
高级,其优先级是:10,循环变量的值为;24
高级,其优先级是:10,循环变量的值为;25
高级,其优先级是:10,循环变量的值为;26
高级,其优先级是:10,循环变量的值为;27
高级,其优先级是:10,循环变量的值为;28
高级,其优先级是:10,循环变量的值为;29
低级,其优先级是:1,循环变量的值为;1
低级,其优先级是:1,循环变量的值为;2
低级,其优先级是:1,循环变量的值为;3
低级,其优先级是:1,循环变量的值为;4
低级,其优先级是:1,循环变量的值为;5
低级,其优先级是:1,循环变量的值为;6
低级,其优先级是:1,循环变量的值为;7
低级,其优先级是:1,循环变量的值为;8
低级,其优先级是:1,循环变量的值为;9
低级,其优先级是:1,循环变量的值为;10
低级,其优先级是:1,循环变量的值为;11
低级,其优先级是:1,循环变量的值为;12
低级,其优先级是:1,循环变量的值为;13
低级,其优先级是:1,循环变量的值为;14
低级,其优先级是:1,循环变量的值为;15
低级,其优先级是:1,循环变量的值为;16
低级,其优先级是:1,循环变量的值为;17
低级,其优先级是:1,循环变量的值为;18
低级,其优先级是:1,循环变量的值为;19
低级,其优先级是:1,循环变量的值为;20
低级,其优先级是:1,循环变量的值为;21
低级,其优先级是:1,循环变量的值为;22
低级,其优先级是:1,循环变量的值为;23
低级,其优先级是:1,循环变量的值为;24
低级,其优先级是:1,循环变量的值为;25
低级,其优先级是:1,循环变量的值为;26
低级,其优先级是:1,循环变量的值为;27
低级,其优先级是:1,循环变量的值为;28
低级,其优先级是:1,循环变量的值为;29
这篇关于改变线程优先级的自测小程序的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!