午夜剧场伦理_日本一道高清_国产又黄又硬_91黄色网战_女同久久另类69精品国产_妹妹的朋友在线

您的位置:首頁技術(shù)文章
文章詳情頁

Java線程狀態(tài)變換過程代碼解析

瀏覽:91日期:2022-08-31 16:51:02

線程狀態(tài)

NEW:剛創(chuàng)建未啟動的線程 RUNNABLE:正在執(zhí)行狀態(tài) BLOCKED:處于阻塞狀態(tài)的線程 WAITING:正在等待另一個線程執(zhí)行特定動作的線程 TIMED_WAITING:等待另一個線程執(zhí)行時間到達指定時間 TERMINATED:線程退出執(zhí)行

public class TestState { public static void main(String[] args) { Thread thread = new Thread(()->{ for (int i = 0; i < 5; i++) {try { Thread.sleep(1000);} catch (InterruptedException e) { e.printStackTrace();} } System.out.println('/////'); }); //觀察線程狀態(tài) Thread.State state = thread.getState(); System.out.println(state); //New狀態(tài) thread.start(); state = thread.getState(); System.out.println(state);//Run狀態(tài) while (state!=Thread.State.TERMINATED){ try {Thread.sleep(100); } catch (InterruptedException e) {e.printStackTrace(); } state = thread.getState();//更新線程狀態(tài) System.out.println(state);//輸出狀態(tài) } }}

線程禮讓

當前正在執(zhí)行的線程暫停,但是不會阻塞 當前線程失去處理機,編程就緒狀態(tài) 禮讓是否成功取決于CPU,如果禮讓成功,則等待下一次調(diào)度

public class TestYield { public static void main(String[] args) { MyYield myYield = new MyYield(); new Thread(myYield,'a').start(); new Thread(myYield,'b').start(); }}class MyYield implements Runnable{ @Override public void run() { System.out.println(Thread.currentThread().getName()+'線程開始執(zhí)行'); Thread.yield(); System.out.println(Thread.currentThread().getName()+'線程停止執(zhí)行'); }}

執(zhí)行結(jié)果:

Java線程狀態(tài)變換過程代碼解析

線程強制執(zhí)行到結(jié)束

使用join()方法 使用join()方法的線程會強制執(zhí)行直到結(jié)束,不會讓出處理機

public class TestJoin implements Runnable{ @Override public void run() { for (int i = 0; i < 1000; i++) { System.out.println('強制執(zhí)行線程來了'+i); } } public static void main(String[] args) throws Exception{ TestJoin testJoin = new TestJoin(); Thread thread = new Thread(testJoin); thread.start(); for (int i = 0; i < 500; i++) { if(i==200){thread.join(); } System.out.println('主線程'+i); } }}

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標簽: Java
相關(guān)文章:
主站蜘蛛池模板: 色区视频| 九九久久精品视频 | 91免费看黄| 人人看人人干 | 久久国产欧美 | 成人免费视频国产免费网站 | 精品视频一二三 | 色网站免费看 | xxxx久久| 天天激情站 | www.夜夜夜| 久久久综合 | 国产激情一区二区三区 | 免费在线日韩 | 久草免费在线观看视频 | 国产在线123| 国产第一福利影院 | 九九热视频在线 | 色悠悠久久 | 国产三级网站 | 天堂在线免费观看视频 | 欧美视频国产 | www日本com| 久久性网 | 手机免费av | 综合自拍偷拍 | 黄色录像免费看 | 九九久久免费视频 | 免费高清欧美大片在线观看 | 亚洲色综合| 国产无套免费网站69 | 夜夜草| 中文字幕在线播放一区 | 夜夜爽天天干 | 中文字幕第九页 | 色大师av| 超碰成人av | 殴美黄色大片 | 精品白浆 | 天天干天天色综合 | 久久美女免费视频 |