- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.InterruptedException
-
- All Implemented Interfaces:
-
Serializable
public class InterruptedException extends 异常
线程在等待,睡眠或以其他方式占用时抛出,线程在活动之前或活动期间中断。 偶尔,一个方法可能希望测试当前线程是否已被中断,如果是,立即抛出该异常。 可以使用以下代码来实现这一效果:if (Thread.interrupted()) // Clears interrupted status! throw new InterruptedException();
- 从以下版本开始:
- 1.0
- 另请参见:
-
Object.wait()
,Object.wait(long)
,Object.wait(long, int)
,Thread.sleep(long)
,Thread.interrupt()
,Thread.interrupted()
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 InterruptedException()
构造一个InterruptedException
,没有详细消息。InterruptedException(String s)
构造具有指定详细消息的InterruptedException
。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
InterruptedException
public InterruptedException()
构造一个没有详细消息的InterruptedException
。
-
InterruptedException
public InterruptedException(String s)
构造具有指定详细消息的InterruptedException
。- 参数
-
s
- 详细信息。
-
-