W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
java.lang.Object
|---java.lang.Throwable
|---|---java.lang.Exception
|---|---|---java.lang.InterruptedException
public class InterruptedException
extends Exception
當(dāng)線程等待、休眠或以其他方式被占用,并且線程在活動之前或期間被中斷時拋出。 有時某個方法可能希望測試當(dāng)前線程是否已被中斷,如果是,則立即拋出此異常。 下面的代碼可以用來實現(xiàn)這個效果:
if (Thread.interrupted()) // Clears interrupted status!
throw new InterruptedException();
構(gòu)造函數(shù) | 描述 |
---|---|
InterruptedException() | 構(gòu)造一個沒有詳細(xì)消息的 InterruptedException。 |
InterruptedException(String s) | 構(gòu)造帶有指定詳細(xì)消息的 InterruptedException。 |
從類 java.lang.Object 繼承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
從類 java.lang.Throwable 繼承的方法 |
---|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
public InterruptedException()
構(gòu)造一個沒有詳細(xì)消息的 InterruptedException。
public InterruptedException(String s)
構(gòu)造帶有指定詳細(xì)消息的 InterruptedException。
參數(shù):
參數(shù)名稱 | 參數(shù)描述 |
---|---|
s | 詳細(xì)信息。 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: