• java线程中断


    java线程中断

    什么是中断机制

    首先一个线程不应该由其他线程来强制中断或停止,而是应该由线程自己自行停止,自己来决定自己的命运。所以Thread.stop,Thread.suspend.Thread.resume都已经被废弃了。
    其次,在Java中没办法立即停止一条线程,然而停止线程却显得尤为重要,如取消一个耗时的操作。
    因此,Java提供了一种用于停止线程的协商机制–中断,也即中断标识协商机制。
    中断只是一种协商机制,Java没有给中断增加任何语法,中断的过程完全需要我们自己实现。若要中断一个线程,你需要手动调用该线程的interrupt方法,该方法也仅仅是将线程对象的中断标识设成true;接着你需要自己写代码不断地检测当前线程的标识位,如果为true,表示别的线程要求这条线程中断, 此时究竟该做什么需要你自己写代码实现。
    每个线程对象中都有一个标识,用于表示线程是否被中断;该标识位为true表示中断,为false表示未中断;通过调用线程对象的interrupt方法将该线程的标识位设为true;可以在别的线程中调用,也可以在自己的线程中调用。

    中断的相关API方法

    方法解释
    public void interrupt()实例方法,实例方法interrupt()仅仅是设置线程的中断状态为true,不会停止线程
    public static boolean interrupted()静态方法,可以使用Thread.interrupted(); 判断线程是否被中断,并清除当前中断状态,这个方法做两件事情:1.返回当前线程的中断状态 2.将当前线程的中断状态设置为false
    public boolean isInterrupted()实例方法,判断当前线程是否被中断(通过检查中断标志位)

    如何使用中断标识停止线程

    通过一个volatile变量实现

    public class InterruptDemo
    {
    private static volatile boolean isStop = false;
    
    public static void main(String[] args)
    {
        new Thread(() -> {
            while(true)
            {
                if(isStop)
                {
                    System.out.println(Thread.currentThread().getName()+"线程------isStop = true,自己退出了");
                    break;
                }
                System.out.println("-------hello interrupt");
            }
        },"t1").start();
    
        //暂停几秒钟线程
        try { TimeUnit.SECONDS.sleep(1); } catch (InterruptedException e) { e.printStackTrace(); }
        isStop = true;
    }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    通过Thread类自带的中断方法实现

    public class InterruptDemo
    {
        public static void main(String[] args)
        {
            Thread t1 = new Thread(() -> {
                while(true)
                {
                    if(Thread.currentThread().isInterrupted())
                    {
                        System.out.println("-----t1 线程被中断了,break,程序结束");
                        break;
                    }
                    System.out.println("-----hello");
                }
            }, "t1");
            t1.start();
    
            System.out.println("**************"+t1.isInterrupted());
            //暂停5毫秒
            try { TimeUnit.MILLISECONDS.sleep(5); } catch (InterruptedException e) { e.printStackTrace(); }
            t1.interrupt();
            System.out.println("**************"+t1.isInterrupted());
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    当前线程的中断标识为true,是不是就立刻停止?

    对于一个线程,调用interrupt()时,

    • 如果线程处于正常活动状态,那么会将该线程的中断标志设置为true,仅此而已。被设置中断标志的线程将继续正常运行,不受影响。所以interrupt()并不能真正中断线程,需要被调的线程自己进行配合。
    • 如果线程处于被阻塞状态(例如处于sleep,wait,join等状态),在别的线程中调用当前线程对象的interrupt方法,那么线程将立即退出被阻塞状态,并且抛出一个InterruptedException异常。
    public class InterruptDemo2
    {
        public static void main(String[] args) throws InterruptedException
        {
            Thread t1 = new Thread(() -> {
                for (int i=0;i<300;i++) {
                    System.out.println("-------"+i);
                }
                System.out.println("after t1.interrupt()--第2次---: "+Thread.currentThread().isInterrupted());
            },"t1");
            t1.start();
    
            System.out.println("before t1.interrupt()----: "+t1.isInterrupted());
            //实例方法interrupt()仅仅是设置线程的中断状态位设置为true,不会停止线程
            t1.interrupt();
            //活动状态,t1线程还在执行中
            try { TimeUnit.MILLISECONDS.sleep(3); } catch (InterruptedException e) { e.printStackTrace(); }
            System.out.println("after t1.interrupt()--第1次---: "+t1.isInterrupted());
            //非活动状态,t1线程不在执行中,已经结束执行了。
            try { TimeUnit.MILLISECONDS.sleep(3000); } catch (InterruptedException e) { e.printStackTrace(); }
            System.out.println("after t1.interrupt()--第3次---: "+t1.isInterrupted());
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23

    中断只是一种协同机制,修改中断的标识位,不是立即stop打断。

    静态方法Thread.interrupted()

    /**
     * 作用是测试当前线程是否被中断(检查中断标志),返回一个boolean并清除中断状态,
     * 第二次再调用时中断状态已经被清除,将返回一个false。
     */
    public class InterruptDemo
    {
    
        public static void main(String[] args) throws InterruptedException
        {
            System.out.println(Thread.currentThread().getName()+"---"+Thread.interrupted());
            System.out.println(Thread.currentThread().getName()+"---"+Thread.interrupted());
            System.out.println("111111");
            Thread.currentThread().interrupt();
            System.out.println("222222");
            System.out.println(Thread.currentThread().getName()+"---"+Thread.interrupted());
            System.out.println(Thread.currentThread().getName()+"---"+Thread.interrupted());
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    总结

    线程中断相关的方法:
    interrupt()方法是一个实例方法,它通知目标线程中断,也就是设置目标线程的中断标志位为true,中断标志位表示当前线程已经被中断了。
    isInterrupted方法也是一个实例方法它判断当前线程是否被中断(通过检查中断标志位)并获取中断标志
    Thread类的静态方法interrupted()返回当前线程的中断状态,且将当前线程的中断状态设为false,此方法调用之后会清除当前线程的中断标志位的状态(将中断标志位设置成false了),返回当前值并且设置为false。

  • 相关阅读:
    react老项目 升级react-router
    『 Linux 』使用fork函数创建进程与进程状态的查看
    ShardingSphere-JDBC垂直分片
    函数栈帧的创建和销毁
    Flink - 大规模状态 ValueState 实践与优化
    01的token的年度总结
    飞行机器人专栏(十四)-- Kinect DK 人体骨骼点运动提取方法
    微信小程序-生成canvas图片并保存到手机相册
    深入Linux内核理解epoll事件轮询机制
    MySQL字符串函数
  • 原文地址:https://blog.csdn.net/qq_38785977/article/details/126122372