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:
http://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html#destroy%28%29
NoSuchMethodError
- always
関連URL