最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(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)先級的代碼的評論 (共 條)

分享到微博請遵守國家法律
鞍山市| 定日县| 建昌县| 微博| 金塔县| 项城市| 东辽县| 汉川市| 宜兴市| 嘉定区| 莆田市| 三江| 昌江| 大姚县| 广灵县| 平遥县| 伽师县| 梧州市| 隆尧县| 天津市| 金山区| 鸡西市| 太原市| 石渠县| 南通市| 巴林左旗| 科尔| 吉首市| 鄢陵县| 峨边| 太仓市| 宁安市| 昌邑市| 兴安盟| 通州市| 迁安市| 昭觉县| 玉林市| 麦盖提县| 神池县| 正镶白旗|