java中可以使用Thread.isAlive()判斷在執行緒是否執行,Thread.IsAlive屬性,表示該執行緒目前是否為可用狀態,如果執行緒已經啟動,且目前沒有任何異常的話,則是true,否則為false。 (推薦:java影片教學)
/** * Tests if this thread is alive. A thread is alive if it has * been started and has not yet died. * @return <code>true</code> if this thread is alive; * <code>false</code> otherwise. */ Thread.isAlive()
更多java知識請關注java基礎教學欄位。
以上是java判斷執行緒是否運行的詳細內容。更多資訊請關注PHP中文網其他相關文章!