无码av一区二区三区无码,在线观看老湿视频福利,日韩经典三级片,成 人色 网 站 欧美大片在线观看

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

多線程優(yōu)先級的代碼

2020-04-12 10:23 作者:小垃圾kiki  | 我要投稿
package cn.jd.state;
/*
?* 線程的優(yōu)先級,優(yōu)先級的取值范圍是數(shù)字1-10
?* 在API里面提供了3個常量供我們操作
?* 1.NORM_PRIORITY? 所有線程默認(rèn)是5
?* 2.MIN_PRIORITY???? 1
?* 3.MAX_PRIORITY??? 10
?* 優(yōu)先級代表的是概率事件,不代表絕對的先后順序
?*/
public class PriorityTest {
?? ?public static void main(String[] args) {
//?? ??? ?System.out.println(Thread.currentThread().getPriority());
?? ??? ?Test t=new Test();
?? ??? ?Thread t1=new Thread(t,"1");
?? ??? ?Thread t2=new Thread(t,"2");
?? ??? ?Thread t3=new Thread(t,"3");
?? ??? ?Thread t4=new Thread(t,"4");
?? ??? ?Thread t5=new Thread(t,"5");
?? ??? ?Thread t6=new Thread(t,"6");
?? ??? ?//設(shè)置優(yōu)先級一定要在啟動之前
?? ??? ?t1.setPriority(Thread.MAX_PRIORITY);
?? ??? ?t2.setPriority(Thread.MAX_PRIORITY);
?? ??? ?t3.setPriority(Thread.MIN_PRIORITY);
?? ??? ?t4.setPriority(Thread.MIN_PRIORITY);
?? ??? ?t5.setPriority(Thread.MIN_PRIORITY);
?? ??? ?t6.setPriority(Thread.MIN_PRIORITY);
?? ??? ?t1.start();
?? ??? ?t2.start();
?? ??? ?t3.start();
?? ??? ?t4.start();
?? ??? ?t5.start();
?? ??? ?t6.start();
?? ??? ?
?? ??? ?
?? ?}

}
class Test implements Runnable{

?? ?@Override
?? ?public void run() {
?? ??? ?System.out.println(Thread.currentThread().getName()+"-->"+Thread.currentThread().getPriority());
//?? ??? ?Thread.yield();//禮讓一下還會發(fā)送改變
?? ??? ?
?? ?}
?? ?
}

多線程優(yōu)先級的代碼的評論 (共 條)

分享到微博請遵守國家法律
寿光市| 廊坊市| 尚义县| 樟树市| 喀什市| 濉溪县| 东兴市| 焉耆| 公安县| 福海县| 绥芬河市| 文昌市| 南郑县| 英德市| 天峻县| 故城县| 宁城县| 宜丰县| 新闻| 隆德县| 屯门区| 太保市| 怀柔区| 三都| 阿克| 石柱| 南涧| 永昌县| 楚雄市| 凭祥市| 兖州市| 尉犁县| 安西县| 清新县| 西吉县| 青岛市| 新绛县| 思南县| 咸宁市| 中阳县| 惠水县|