- 不正确的线程中止 - stop
- 正确的线程中止 - interrupt
- 正确的线程中止 - 标志位
1 不正确的线程中止 - stop
Stop:中止线程,并且清除监控器锁的信息,但是可能导致线程安全问题,JDK不建议用。
Destory:JDK未实现该方法。
public class Demo{
public static void main(String[] args) throws InterruptedException{
StopThread thread = new StopThread();
thread.start();
Thread.sleep(1000);
thread.stop();
while(thread.isAlive()){
//确保线程已经终止
}
thread.print();
}
}
public class StopThread extends Thread{
private int i = 0, j = 0;
@Override
public void run(){
synchronized(this){
i++;
try{
Thread.sleep(10000);
}catch(InterruptedException e){
e.printStackTrace();
}
++j;
}
}
public void print(){
System.out.println("i=" + i + ", j=" + j);
}
}
2 正确的线程中止 - interrupt
如果目标线程在调用Object class的wait()、wait(long)或wait(long, int)方法、join()、join(long, int)或sleep(long, int)方法时被阻塞,那么interrupt会生效,该线程的中断状态将被清除,抛出InterruptedException异常。
如果目标线程是被I/O或者NIO中的Channel所阻塞,同样,I/O操作会被中断或者返回特殊异常值。达到终止线程的目的。
如果以上条件都不满足,则会设置此线程的中断状态。
对于以上的示例,stop改成interrupt后,最终输出为"i=1, j=1",数据一致。
3 正确的线程中止 - 标志位
代码逻辑中,增加一个判断,用来控制线程执行的中止。
public class Demo extends Thread{
public volatile static boolean flag = true;
public static void main(String[] args) throws interruptedException{
new Thread(()->{
try{
while(flag){
System.out.println("运行中");
Thread.sleep(1000L);
}
}catch(InterruptedException e){
e.printStackTrace();
}
}).start();
Thread.sleep(3000L);
flag = false;
System.out.println("程序运行结束");
}
}
参考文章
结语
本人所有博客仅用于学习记录,不做任何商业用途,如涉及侵权,还请联系删除,感谢阅读,欢迎留言,一起进步~