我是靠谱客的博主 合适帽子,最近开发中收集的这篇文章主要介绍Java线程设置优先级,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.Java可以通过设置优先级,来决定线程的运行优先级
2.通过 setPriority(int newPriority)来设置优先级,其中函数里面写为Thread.NORM_PRIORITY + n.最高级为5,若超过,则会报IllegalArgumentException 异常
代码:
public class TestPriority {
public static void main(String[] args) {
Thread t1 = new Thread(new T1());
Thread t2 = new Thread(new T2());
t1.setPriority(Thread.NORM_PRIORITY + 5);
t1.start();
t2.start();
}
}

class T1 implements Runnable {
public void run() {
for(int i=0;i<1000;i++) {
System.out.println("T1 " + i);
}
}
}

class T2 implements Runnable {
public void run() {
for(int i=0;i<1000;i++) {
System.out.println("T2 " + i);
}
}
}

最后

以上就是合适帽子为你收集整理的Java线程设置优先级的全部内容,希望文章能够帮你解决Java线程设置优先级所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部