Here is what JDK 1.3 documentation say about destroy method of
Thread public void destroy()
Destroys this thread, without any cleanup. Any monitors it has locked remain locked.
(This method is not implemented.)
Attention to last statement.
Does it mean that it is not implemented in JDK
or it is not implemented in
Java 2?
Do we have to ignore the fact that it is not implemented
for exam purpose?