killing a running thread in java?
How to kill a running thread in 开发者_如何转开发java
You can ask the thread to interrupt, by calling Thread.interrupt()
Note that a few other methods with similar semantics exist - stop()
and destroy()
- but they are deprecated, because they are unsafe. Don't be tempted to use them.
As Bozho said, Thread.interrupt() is the generic and right way to do it. But remember that it requires the thread to cooperate; It is very easy to implement a thread that ignores interruption requests.
In order for a piece of code to be interruptible this way, it shouldn't ignore any InterruptedException, and it should check the interruption flag on each loop iteration (using Thread.currentThread().isInterrupted()). Also, it shouldn't have any non-interruptible blocking operations. If such operations exist (e.g. waiting on a socket), then you'll need a more specific interruption implementation (e.g. closing the socket).
Shortly you need Thread.interrupt()
For more details check the section How do I stop a thread that waits for long periods (e.g., for input)
in this article Why Are Thread.stop
, Thread.suspend
,Thread.resume
and Runtime.runFinalizersOnExit
Deprecated?.
精彩评论