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

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

分享到微博請遵守國家法律
和田县| 乌兰浩特市| 普定县| 沽源县| 彭山县| 五莲县| 九江市| 琼海市| 龙门县| 宜都市| 江孜县| 名山县| 麻城市| 铅山县| 临高县| 黎川县| 乐昌市| 沈丘县| 当涂县| 周口市| 文水县| 镶黄旗| 土默特左旗| 临沧市| 日照市| 从江县| 进贤县| 沛县| 塔河县| 无锡市| 宜丰县| 德安县| 宿州市| 开原市| 沧州市| 夏河县| 兴安县| 江华| 榕江县| 克什克腾旗| 报价|