您好,登錄后才能下訂單哦!
這篇文章主要介紹“java安全停止線程的方法”,在日常操作中,相信很多人在java安全停止線程的方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”java安全停止線程的方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
Thread.stop()是一個被廢棄的方法,不被推薦使用的原因是stop方法太過于暴力,強行把執行到一半的線程終止,并且會立即釋放這個線程所有的鎖。會破壞了線程中引用對象的一致性。
使用判斷標志位的方法中斷線程
interrupt() //線程中斷 (標志位設置為true) isInterrupted() //判斷是否被中斷 interrupted() //判斷是否中斷,并清除當前中斷狀態(標志位改為false) public static class TestThread extends Thread{ public TestThread(String name){ super(name); } @Override public void run() { String threadName=Thread.currentThread().getName(); while (!isInterrupted()){ //Runnable中用 Thread.currentThread().isInterruputed System.out.println(threadName+" is run"); } System.out.println(threadName+" flag is "+isInterrupted()); } } public static void main(String[] args) throws InterruptedException { Thread testThread=new TestThread("test"); testThread.start(); Thread.sleep(2000); testThread.interrupt(); }
當拋出 InterruptedException 異常,線程中斷標志位會被復位 false, 線程不會正常中斷 ,需要手動中斷interrupt()
到此,關于“java安全停止線程的方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。