yohhoyの日記

技術的メモをしていきたい日記

Thread.destroyメソッド

Java標準ライブラリで提供されるThread.destoryメソッドについて。これまで一度も実装されることなく非推奨(deprecated)となった。常にNoSuchMethodErrorエラーを送出する。

@Deprecated
public void destroy()

Deprecated. This method was originally designed to destroy this thread without any cleanup. Any monitors it held would have remained locked. However, the method was never implemented. (snip)

Throws:
 NoSuchMethodError - always

http://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html#destroy%28%29

関連URL