java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.ThreadDeath
- 所有已实现的接口:
-
Serializable
Deprecated, for removal: This API element is subject to removal in a future version.
一个
ThreadDeath
的实例最初被指定为在使用Thread.stop()
方法时由受影响的线程抛出。
- 自从:
- 1.0
- 参见:
-
Constructor Summary
-
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ThreadDeath
public ThreadDeath()Deprecated, for removal: This API element is subject to removal in a future version.构造一个ThreadDeath
。
-
Thread.stop()
was originally specified to "stop" a victim thread by causing the victim thread to throw aThreadDeath
. It was inherently unsafe and deprecated in an early JDK release. The ability to "stop" a thread withThread.stop
has been removed and theThread.stop
method changed to throw an exception. Consequently,ThreadDeath
is also deprecated, for removal.