您好,登錄后才能下訂單哦!
這篇文章主要講解了“java中wait調用中斷怎么解決”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“java中wait調用中斷怎么解決”吧!
1、解決辦法
(1)使用java線程時,將經常使用wait方法,并且如果在調用wait方法時中斷了,jvm將捕獲該中斷,并持續調用wait指令。
(2)此時即使使用interrupt發送法中斷,也不會發生任何效果。
(3)wait方法需要進行一些封裝,捕獲異常,然后停止執行該異常。
2、實例
public static void wait(Object obj) { boolean interrupted = true; while (interrupted) { interrupted = false; try { obj.wait(); } catch (InterruptedException e) { interrupted = true; } } } public static void wait(Object obj, int timeout) { boolean interrupted = true; long startTime = System.currentTimeMillis(); int sleepTimeout = timeout; while (interrupted) { interrupted = false; try { obj.wait(sleepTimeout); } catch (InterruptedException e) { interrupted = true; long now = System.currentTimeMillis(); sleepTimeout -= now - startTime; startTime = now; if (sleepTimeout < 0) { interrupted = false; } } } }
感謝各位的閱讀,以上就是“java中wait調用中斷怎么解決”的內容了,經過本文的學習后,相信大家對java中wait調用中斷怎么解決這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。