摘要:和是配套使用的,方法容易導致死鎖。方法不會保證線程的資源正常釋放方法給線程打個停止標記,將線程的中斷狀態設置為,并沒有馬上強制中斷線程,線程是否中斷由線程自己決定。終結狀態,還是返回。方法判斷當前線程是否中斷,清除中斷標志。
resume、suspend、stop
resume和suspend是配套使用的,suspend方法容易導致死鎖。
stop方法不會保證線程的資源正常釋放
interruptinterrupt()方法:給線程打個停止標記,將線程的中斷狀態設置為true,并沒有馬上強制中斷線程,線程是否中斷由線程自己決定。
isInterrupted()方法:判斷當前線程是否中斷,不清除中斷標志。終結狀態,還是返回false。
interrupted()方法:判斷當前線程是否中斷,清除中斷標志。
如果拋出異常,中斷狀態設置為false。
示例 例子1public class InterruptThread extends Thread { @Override public void run() { while (true) { } } public static void main(String[] args) throws InterruptedException { InterruptThread thread = new InterruptThread(); thread.start(); System.out.println(thread.getState()); sleep(1000); thread.interrupt(); System.out.println(thread.getState()); System.out.println(thread.isInterrupted()); } }
運行結果如下
可以看出,雖然中斷狀態是true了,但是程序依然在運行,所以interrupt并沒有強制中斷線程。
public class InterruptThread2 extends Thread { @Override public void run() { while (!isInterrupted()) { } System.out.println("已中斷"); } public static void main(String[] args) throws InterruptedException { InterruptThread2 thread = new InterruptThread2(); thread.start(); System.out.println(thread.getState()); sleep(1000); thread.interrupt(); System.out.println(thread.getState()); System.out.println(thread.isInterrupted()); } }
運行結果如下:
跟例子1的區別是,通過判斷中斷狀態,來處理我們自己的業務邏輯,這樣的設計,給程序帶來了極大的利靈活性。
public class InterruptWait extends Thread { @Override public void run() { waitFun(); } public synchronized void waitFun(){ try { wait(); } catch (InterruptedException e) { System.out.println("打擾我等待了"); } } public static void main(String[] args) throws InterruptedException { InterruptWait thread = new InterruptWait(); thread.start(); System.out.println(thread.getState()); sleep(1000); thread.interrupt(); sleep(1000); System.out.println(thread.getState()); System.out.println(thread.isInterrupted()); sleep(1000); System.out.println(thread.getState()); } }
運行結果如下:
中斷wait方法,這里需要注意的是,拋出異常后,中斷狀態變成false。
public class InterruptWait extends Thread { @Override public void run() { waitFun(); } public synchronized void waitFun(){ try { wait(); } catch (InterruptedException e) { System.out.println("打擾我等待了"); } } public static void main(String[] args) throws InterruptedException { InterruptWait thread = new InterruptWait(); thread.start(); System.out.println(thread.getState()); sleep(1000); thread.interrupt(); sleep(1000); System.out.println(thread.getState()); System.out.println(thread.isInterrupted()); sleep(1000); System.out.println(thread.getState()); } }
運行結果如下:
結果同上,拋出異常后,中斷狀態變成false。
public class InterruptSync extends Thread { @Override public void run() { syncFun(); } public static synchronized void syncFun() { while (true) { } } public static void main(String[] args) throws InterruptedException { InterruptSync thread = new InterruptSync(); InterruptSync thread2 = new InterruptSync(); thread.start(); sleep(1000); thread2.start(); sleep(1000); System.out.println(thread.getState()); System.out.println(thread2.getState()); thread2.interrupt(); sleep(1000); System.out.println(thread2.getState()); System.out.println(thread2.isInterrupted()); } }
運行結果如下:
沒有拋異常,結果同例子1。
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/75248.html
摘要:不釋放持有的鎖,釋放鎖。在調用方法前,必須持有鎖,調用喚醒,也要持有鎖。休眠一定時間后,進入就緒狀態。這兩個都能被方法中斷當前狀態。用法方獲取鎖判斷條件,不滿足繼續滿足執行其他業務方獲取鎖改變條件通知為什么是而不是會一直循環,直到條件滿足。 sleep和wait sleep是Thread類的方法,wait是Object的方法。 sleep可以到處使用,wait必須是在同步方法或者代碼...
摘要:就緒狀態調用或者由阻塞狀態被解除時,進入就緒狀態,此時,只能表示線程可以運行了,但不代表已經運行了,需要等待的調度。死亡狀態當線程執行結束或者異常等,線程就會結束,進入死亡狀態。 流程圖 showImg(https://segmentfault.com/img/bVbuJ6f); 新建狀態 當用new創建一個線程后,線程就處于新建狀態,此時和其他普通java對象一樣,由JVM創建內存空...
摘要:定義等待該線程終止,比如線程調用了線程的,那么線程要等到線程執行完后,才可以繼續執行。 定義 等待該線程終止,比如A線程調用了B線程的join,那么A線程要等到B線程執行完后,才可以繼續執行。 示例 public class JoinDemo { static class JoinThread1 implements Runnable { Thread thre...
摘要:與執行方法,是用來啟動線程的,此時線程處于就緒狀態,獲得調度后運行方法。執行方法,相對于普通方法調用,在主線程調用。程序是順序執行的,執行完才會執行下面的程序。 start與run 執行start方法,是用來啟動線程的,此時線程處于就緒狀態,獲得調度后運行run方法。run方法執行結束,線程就結束。 執行run方法,相對于普通方法調用,在主線程調用。程序是順序執行的,執行完才會執行下...
摘要:在指定毫秒數內,讓正在執行的當前線程進入休眠期。示例運行結果如下結果可以看出,線程的兩次時間相差毫秒,的兩次時間相差毫秒,只影響自己的線程運行,不影響其他線程。 sleep 在指定毫秒數內,讓正在執行的當前線程進入休眠期。 示例 public class SleepDemo extends Thread { @Override public void run() { ...
閱讀 4024·2021-11-22 13:53
閱讀 1722·2021-09-23 11:52
閱讀 2443·2021-09-06 15:02
閱讀 946·2019-08-30 15:54
閱讀 906·2019-08-30 14:15
閱讀 2390·2019-08-29 18:39
閱讀 662·2019-08-29 16:07
閱讀 426·2019-08-29 13:13