JAVA多线程 - 线程中止

作者: 右耳菌 | 来源:发表于2022-05-25 22:39 被阅读0次

    1. 不正确的线程中止 - Stop

    • Stop:中止线程,并且清除监控器锁的信息,但是可能导致线程安全问题,JDK不建议用。
    • Destroy:JDK未实现该方法。
    • 例子

    Demo3.java

    package cn.lazyfennec.threaddemo.demo;
    
    /**
     * @Author: Neco
     * @Description: 示例3 - 线程stop强制性中止,破坏线程安全的示例
     * @Date: create in 2022/5/25 22:26
     */
    public class Demo3 {
        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();
        }
    }
    

    StopThread.java

    package cn.lazyfennec.threaddemo.demo;
    
    /**
     * @Author: Neco
     * @Description:
     * @Date: create in 2022/5/25 22:27
     */
    public class StopThread extends Thread {
        private int i = 0, j = 0;
    
        @Override
        public void run() {
            synchronized (this) {
                // 增加同步锁,确保线程安全
                ++i;
                try {
                    // 休眠10秒,模拟耗时操作
                    Thread.sleep(10000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                ++j;
            }
        }
    
        /** * 打印i和j */
        public void print() {
            System.out.println("i=" + i + " j=" + j);
        }
    }
    

    运行结果:

    i=1 j=0
    

    出现了线程安全问题,即进入到了同步锁中中断了线程,破坏了一致性。

    2. 正确的线程中止 - interrupt

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

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

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

    注意 对于Demo3中的示例,stop改成interrupt后,最终输出为“i=1 j=1”,数据一致。

    package cn.lazyfennec.threaddemo.demo;
    
    /**
     * @Author: Neco
     * @Description: 示例3 - 线程stop强制性中止,破坏线程安全的示例
     * @Date: create in 2022/5/25 22:26
     */
    public class Demo3 {
        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();
        }
    }
    

    运行结果:

    java.lang.InterruptedException: sleep interrupted
        at java.lang.Thread.sleep(Native Method)
        at cn.lazyfennec.threaddemo.demo.StopThread.run(StopThread.java:18)
    i=1 j=1
    

    3. 正确的线程中止 - 标志位

    代码逻辑中,增加一个判断,用来控制线程执行的中止。

    • 例子:
    package cn.lazyfennec.threaddemo.demo;
    
    /**
     * @Author: Neco
     * @Description: 通过状态位来判断
     * @Date: create in 2022/5/25 22:33
     */
    public class Demo4 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();
            // 3秒之后,将状态标志改为False,代表不继续运行
            Thread.sleep(3000L);
            flag = false;
            System.out.println("程序运行结束");
        }
    }
    

    运行结果:

    运行中
    运行中
    运行中
    程序运行结束
    

    如果觉得有收获就点个赞吧,更多知识,请点击关注查看我的主页信息哦~

    相关文章

      网友评论

        本文标题:JAVA多线程 - 线程中止

        本文链接:https://www.haomeiwen.com/subject/oimyprtx.html