不正确的线程中止--Stop
Stop: 中止线程,并且清除监控锁的信息,但是可能导致线程安全问题,JDK不建议使用。
Destroy: JDK未实现该方法。
public class Demo3 {
public static void main(String[] args) {
StopThread thread = new StopThread();
thread.start();
thread.stop();
while (thread.isAlive()){
}
thread.print();
}
}
class StopThread extends Thread{
private int i = 0,j = 0;
public void run(){
++i;
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
++j;
}
public void print(){
System.out.println("i = " + i +", j =" + j);
}
}
理想输出:i = 0 , j =0
程序执行结果: i = 1, j =0
得出结论: 没有保证同步代码块里面数据的一致性,破坏了线程安全。
正确的线程中止--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",数据一致。
正确的线程中止--标志位
代码逻辑中,添加一个判断,用来控制线程执行的中止。
public class Demo4 {
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("程序运行结束");
}
程序运行结果:
线程正在运行
线程正在运行
线程正在运行
程序运行结束