Java 线程中止

不正确的线程终止-Stop

Stop:终止线程,并且清除监控器锁的信息,但是可能导致线程安全问题,JDK不建议使用。

Destroy:JDK未实现该方法。

一个线程实现i++, 然后休眠10秒,模拟其它耗时处理, 然后j++;

当这期间线程被中断,期望实现了i++,同时实现了j++;

package com.ly.study;

/**
 * 线程处理i++  j++
 */
public class StopThread extends Thread{
    private int i=0,j=0;
    @Override
    public void run() {
        synchronized (this){//增加同步锁,确保线程安全
            ++i;
            //休眠10秒  模拟耗时操作
            try {
                Thread.sleep(10000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            ++j;
        }
    }
    //打印i和j
    public void print(){
        System.out.println("i="+i+"j="+j);
    }
}

错误的线程终止方式

用stop ,同步代码块没起作用,线程直接终止。没有实现j++;没有保证同步代码块里面数据的一致性,破坏了线程安全。

执行结果未i=1;j=0;

package com.ly.study;

/**
 * 线程终止 理想输出
 */
public class ThreadStopTest {
    public static void main(String[] args) throws InterruptedException {
        StopThread thread = new StopThread();
        thread.start();
        // 休眠1秒,确保i变量自增成功
        Thread.sleep(1000);
        // 暂停线程
          thread.stop(); // 错误的终止
//        thread.interrupt(); // 正确终止
        while (thread.isAlive()) {
            // 确保线程已经终止
        } // 输出结果
        thread.print();
    }

}

正确的线程终止——interrupt

如果目标线程在调用Object calss 的wait()、wait(long) 或wait(long,int)方法、join()、join(long,int)、sleep(long)或sleep(long,int)方法时被阻塞。那么Interrupt会生效,该线程的中断状态将被清除,抛出InterruptedException异常。

如果目标线程是被I/0或者NIO中的Channel所阻塞,同样,I/O操作会被中断或者返回特殊异常值,达到终止线程的目的。

如果以上条件都不满足,则会设置此线程的中断状态。

/**
 * 线程终止 理想输出
 */
public class ThreadStopTest {
    public static void main(String[] args) throws InterruptedException {
        StopThread thread = new StopThread();
        thread.start();
        // 休眠1秒,确保i变量自增成功
        Thread.sleep(1000);
        // 暂停线程
//          thread.stop(); // 错误的终止
        thread.interrupt(); // 正确终止
        while (thread.isAlive()) {
            // 确保线程已经终止
        } // 输出结果
        thread.print();
    }

}

正确的线程终止 ——通过标志位

/** 通过状态位来判断 */
public class StopThreadFlag {
    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();
        // 3秒之后,将状态标志改为False,代表不继续运行
        Thread.sleep(3000L);
        flag = false;
        System.out.println("程序运行结束");
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值