Home  >  Article  >  Java  >  Detailed introduction to thread interruption in Java

Detailed introduction to thread interruption in Java

WBOY
WBOYforward
2022-11-09 13:56:441133browse

This article brings you relevant knowledge about java, which mainly introduces the relevant content about thread interruption. Interruption is a way for threads to interrupt each other, such as two There are threads a and b. If a wants to interrupt the execution of b at a certain moment, it can call the b.interrupt() method to interrupt. Let's take a look at it together. I hope it will be helpful to everyone.

Detailed introduction to thread interruption in Java

Recommended study: "java video tutorial"

Thread interruption in Java

1 Thread interruption related Method introduction

The interrupt() method, isInterrupted() method and interrupted() method in Java multi-thread programming are all related to threads Interrupt related methods are very important. The names of these three methods are very similar, and it is easy to confuse them if you do not understand the principles. They are introduced here to distinguish them. Since the interrupt() method and the isInterrupted() method are both instance methods (non-class static methods), I added a thread1 in front, Represents an instantiated specific thread:

thread1.interrupt() method

thread1.interrupt() method is used to interrupt the thread, so-called The interruption can be commonly understood as interruption. For example, there are two threads a and b. When thread a wants to interrupt thread b for some reason, thread a b.interrupt() can be called internally. However, please note that the implementation is achieved by setting the interrupt status flag of the thread b. b During the running of the thread code, the interrupt status mark can be continuously judged in a loop body to confirm whether the interrupt request of a is actually responded to (such as exiting execution, etc. ).

thread1.isInterrupted() method

thread1.isInterrupted() method is used to obtain the interrupt status of a thread. For example, there are two threads a and b. When thread a wants to interrupt thread b for some reason, you can use b. interrupt()Interrupts b. Inside thread b, you can determine its interrupt status and whether it was interrupted, and then confirm whether to respond to the interrupt request based on the interrupt status (such as exiting the loop body of the current thread, etc.). thread1.isInterrupted()The native method is directly called inside the method. The incoming ClearInterrupted parameter is false, which means that the interrupt status is not cleared. Mark:

public boolean isInterrupted() {
  return isInterrupted(false);
}// ClearInterrupted表示是否清楚中断状态标记private native boolean isInterrupted(boolean ClearInterrupted);

Therefore, after calling this method, the interrupt flag is not cleared.

Thread.interrupted() method

Thread.interrupted() is a static method defined on the Thread class , used to determine the interruption status of the current thread. Different from thread1.isInterrupted(), this method will reset (reset) after returning to the interruption status. Interrupt status mark, the so-called reset is to restore the default state, which can also be said to clear the interrupt status mark. Looking at the Thread class source code, you can see that the Thread.interrupted() method is very simple to implement. The native method is directly called internally, except that ClearInterruptedThe parameter passed is true, which means clearing the interrupt status mark:

public static boolean interrupted() {
  return currentThread().isInterrupted(true);
}// ClearInterrupted表示是否清楚中断状态标记private native boolean isInterrupted(boolean ClearInterrupted);

It can be seen that thread1.isInterrupted() and Thread.interrupted The difference between () actually lies in whether to reset it after obtaining the interrupt status flag. You can choose to use it according to your needs.

2 How to gracefully stop a thread without considering thread blocking

If you want to gracefully stop a thread from running, you need the interrupt mechanism introduced earlier. For example, there are two threads a and b. When thread a wants to interrupt thread b, it can call b.interrupt()Method to set the interrupt mark of thread b to notify thread b. The thread b needs to constantly check its own interrupt mark to respond to interrupts from other threads at any time, such as the following implementation:

public class TestMain {
    public static void main(String[] args) throws InterruptedException {
        Thread b = new Thread(new Runnable() {
            @Override
            public void run() {
                int num = 0;
                while(true) {
                    if (Thread.interrupted()) {
                        break;
                    }
                    System.out.println("thread b running, num is:" + num++);
                }
            }
        });
        b.start();
        // 主线程sleep 1ms,让线程b循环一小会
        Thread.sleep(1);
        // 中断线程b
        b.interrupt();
    }
}

This is within the main thread A new thread b is created. The inside of thread b is a loop body. At the beginning of each loop, the interrupt status is checked to confirm whether it has been interrupted. If it is interrupted, exit the loop and end the thread. execution. The main thread sleeps for 1ms and lets thread b loop several times first. Then the main thread interrupts thread b through b.interrupt(). When you run the program, you can see the following output (the results vary on different machines):

thread b running, num is:0thread b running, num is:1thread b running, num is:2...
thread b running, num is:25thread b running, num is:26thread b running, num is:27Process finished with exit code 0

可以看到主线程成功的中断了线程b。当然,主线程之所以能成功的中断线程b,是因为线程b一直在检查自己的中断状态(如果线程b太自我,不考虑其他线程,只考虑自己运行,那主线程就无法成功打断线程b了)。

3 考虑线程阻塞时如何优雅的停止一个线程

前面我们成功的在主线程中中断了线程b,然后如果线程b中存在阻塞,比如下面的代码所示,线程b在sleep时被主线程中断:

public class TestMain {
    public static void main(String[] args) throws InterruptedException {
        Thread b = new Thread(new Runnable() {
            @Override
            public void run() {
                int num = 0;
                while(true) {
                    if (Thread.interrupted()) {
                        break;
                    }
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        // Thread.currentThread().interrupt();
                        e.printStackTrace();
                    }
                    System.out.println("thread b running, num is:" + num++);
                }
            }
        });
        b.start();
        // 主线程sleep5.5秒,让线程b循环5次
        Thread.sleep(5500);
        // 中断线程b
        b.interrupt();
    }
}

这时线程b会抛出InterruptedException异常,上面的代码中我们仅仅打印了下该异常,相当于什么都没做。运行该代码结果如下:

thread b running, num is:0thread b running, num is:1thread b running, num is:2thread b running, num is:3thread b running, num is:4java.lang.InterruptedException: sleep interrupted
  at java.lang.Thread.sleep(Native Method)
  at test.TestMain$1.run(TestMain.java:25)
  at java.lang.Thread.run(Thread.java:748)
thread b running, num is:5thread b running, num is:6thread b running, num is:7thread b running, num is:8thread b running, num is:9...

可以看出,主线程未能成功中断线程b

3.1 InterruptedException异常介绍

线程内调用waitjoinsleep时都会进入阻塞状态。当线程处于阻塞状态时被中断,这时线程就会抛出InterruptedException异常,其实大家可以通俗的理解为一种通知即可。以sleep方法为例,大家可以按如下模拟实现来理解(底层是native实现):

public static void sleep(long millis) throws InterruptedException 
{
    while (/* still waiting for millis to become zero */) 
    {
        if (Thread.interrupted())
        {
            throw new InterruptedException();
        }
        // Keep waiting
    }
}

有了InterruptedException异常通知,线程就可以在阻塞时立即知道被中断了,进而采取一定的措施响应中断。需要注意的一点是,由于抛出了InterruptedException异常,因此不会在设置中断标志位。

3.2 考虑线程阻塞时如何优雅的停止一个线程

理解了InterruptedException异常,我们就可以在线程即使发生阻塞时也能成功进行中断了,如下所示:

public class TestMain {
    public static void main(String[] args) throws InterruptedException {
        Thread b = new Thread(new Runnable() {
            @Override
            public void run() {
                int num = 0;
                while(true) {
                    if (Thread.interrupted()) {
                        break;
                    }
                    try {
                        Thread.sleep(1000); // 用sleep来模拟线程的执行
                    } catch (InterruptedException e) {
                        Thread.currentThread().interrupt(); // 注意这里是重点!
                    }
                    System.out.println("thread b running, num is:" + num++);
                }
            }
        });
        b.start();
        // 主线程sleep5.5秒,让线程b先循环5次
        Thread.sleep(5500);
        // 中断线程b
        b.interrupt();
    }
}

这里我们在检查到InterruptedException异常时,重新设置了中断标志位,这样下次循环一开始时,即可判断被中断了,进而退出循环体。当然我们可以在InterruptedException异常catch时直接退出。

4 总结

我们介绍了Java中的线程中断相关知识点,通俗来讲,大家可以理解为中断就是一种线程间相互打断的一种方式,比如两个线程aba如果在某一时刻想打断b的执行,则可以调用b.interrupt()方法进行中断,但是要注意,这里仅仅是设置b的中断状态位,b看到中断状态位后可以自行决定是否响应,当然,正常情况我们写的代码都需要做好中断状态位的判断(这一点大家在写业务代码时确实经常忽略)。另外对于阻塞中的线程,Java通过InterruptedException异常来进行通知。

推荐学习:《java视频教程

The above is the detailed content of Detailed introduction to thread interruption in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:juejin.im. If there is any infringement, please contact admin@php.cn delete