其他分享
首页 > 其他分享> > 线程优先级与调度05

线程优先级与调度05

作者:互联网

 

                                   2. Thread类有三个优先级的静态常量:Tread.MIN_PRIORITY(优先级最小)

                                                                                                 Tread.MAX_PRIORITY(优先级最高)

                                                                                                 NORM_PRIORITY(表示缺省优先级,默认值为5)

                      2. java中线程调度采用抢先式调用方法。

2. 由于优先级低的线程只有等优先级高的线程运行完毕或者优先级高的线程进入阻塞状态

    才有机会运行,为了让优先级低的线程也有机会运行,通常会不时让优先级高的线程进

    入睡眠或者等待状态让出CPU的控制权。

注意:线程优先级仍无法保障线程的执行次序,只是获取CPU概率较大。

package src;
class SimpleThread extends Thread
{
String name;
SimpleThread(String threadname)
{
name=threadname;
}
public void run()
{
for (int i=0;i<3;i++)
System.out.println(name+"第"+i+"次运行"+",优先级为:"+getPriority());
}
}
class Setprio
{
public static void main(String args [])
{
Thread t1=new SimpleThread("t1");
t1.setPriority(Thread.MIN_PRIORITY);
t1.start();
Thread t2=new SimpleThread("t2");
t2.setPriority(Thread.MAX_PRIORITY);
t2.start();
Thread t3=new SimpleThread("t3");
t3.start();
Thread t4=new SimpleThread("t4");
t4.start();
}
}

标签:优先级,Thread,SimpleThread,05,t2,PRIORITY,线程
来源: https://www.cnblogs.com/zjwcoblogs/p/16515428.html