How do you kill a thread in Java?
|
See this thread by Sun on why they deprecated Thread.stop(). It goes into detail about why this was a bad method and what should be done to safely stop threads in general. http://docs.oracle.com/javase/1.5.0/docs/guide/misc/threadPrimitiveDeprecation.html The way they recomend is to use a shared variable as a flag which asks the background thread to stop. This variable can then be set by a different object requesting the thread terminate. |
|||||||||||||||
|
|
Generally you don't... You ask it to interrupt whatever it is doing using Thread.interrupt(). A good explanation of why is in the javadoc: http://java.sun.com/j2se/1.5.0/docs/guide/misc/threadPrimitiveDeprecation.html Edit: 18 seconds late to be first reply... damn. |
|||||||||||
|
|
In Java threads are not killed, but the stopping of a thread is done in a cooperative way. The thread is asked to terminate and the thread can then shutdown gracefully. Often a I would not use a
Every thread has already a boolean flag interrupted status and you should make use of it. It can be implemented like this:
Source code taken from Java Concurrency in Practice. Since the There is also a poorly named static method |
|||
|
|
|
One way is by setting a class variable and using it as a sentinel.
Set an external class variable, i.e. flag = true in the above example. Set it to false to 'kill' the thread. |
|||||||||||||||||
|
|
There is of course the case where you are running some kind of not-completely-trusted code. (I personally have this by allowing uploaded scripts to execute in my Java environment. Yes, there are security alarm bell ringing everywhere, but it's part of the application.) In this unfortunate instance you first of all are merely being hopeful by asking script writers to respect some kind of boolean run/don't-run signal. Your only decent fail safe is to call the stop method on the thread if, say, it runs longer than some timeout. But, this is just "decent", and not absolute, because the code could catch the ThreadDeath error (or whatever exception you explicitly throw), and not rethrow it like a gentlemanly thread is supposed to do. So, the bottom line is AFAIA there is no absolute fail safe. |
|||
|
|


ExecutorStatuson this question: stackoverflow.com/questions/2275443/how-to-timeout-a-thread – Kirby Jun 17 '11 at 1:17