Why is Thread.stop() so dangerous?
Why is it advisable to use Thread.interrupted() instead?
I know stop is deprecated. What other thing makes it unsafe?
Is there any place where I can use stop method? If so give me an example.
|
Why is Why is it advisable to use I know Is there any place where I can use |
|||||||
|
The problems are described in detail here: http://download.oracle.com/javase/6/docs/technotes/guides/concurrency/threadPrimitiveDeprecation.html
Because
See link above.
In theory, if you knew that the thread you were stopping:
For example, I think it would be safe to
However, in most cases it is too difficult to do the analysis to figure out if calling |
|||||
|