3.线程优先级
Posted timerhotel
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3.线程优先级相关的知识,希望对你有一定的参考价值。
多线程优先级:
多线程优先级为1~10,数字越大,优先级越高。
一个线程不设置优先级的话,默认优先级为5;
/**
* The minimum priority that a thread can have.
*/
public final static int MIN_PRIORITY = 1;
/**
* The default priority that is assigned to a thread.
*/
public final static int NORM_PRIORITY = 5;
/**
* The maximum priority that a thread can have.
*/
public final static int MAX_PRIORITY = 10;
以上,是Thread类提供的三个优先级常量。
设置优先级的方法为,Thread对象或继承了Thread类的对象,调用setPriority( )方法。
实例:
package com.xm.thread.t_19_01_26;
import java.util.concurrent.TimeUnit;
public class PriorityThread {
public static void main(String[] args) throws InterruptedException {
HightPriorityThread hightPriorityThread = new HightPriorityThread();
LowPriorityThread lowPriorityThread = new LowPriorityThread();
hightPriorityThread.setPriority(Thread.MAX_PRIORITY);
lowPriorityThread.setPriority(Thread.MIN_PRIORITY);
lowPriorityThread.start();
hightPriorityThread.start();
TimeUnit.SECONDS.sleep(1);
System.out.println("默认优先级别!");
}
}
class HightPriorityThread extends Thread{
@Override
public void run() {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("优先级别高!");
}
}
class LowPriorityThread extends Thread{
@Override
public void run() {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("优先级别低!");
}
}
运行结果:
第1次运行结果:
优先级别高!
默认优先级别!
优先级别低!
第2次运行结果:
默认优先级别!
优先级别高!
优先级别低!
结果分析:
虽然优先级别可以设置,但通过以上运行结果我们可以看出,它并不能真正控制线程在CPU上的调度顺序。
以上是关于3.线程优先级的主要内容,如果未能解决你的问题,请参考以下文章
newCacheThreadPool()newFixedThreadPool()newScheduledThreadPool()newSingleThreadExecutor()自定义线程池(代码片段