Home Java javaTutorial What is thread interrupt in Java? What problems will Java thread interruption cause?

What is thread interrupt in Java? What problems will Java thread interruption cause?

Sep 20, 2018 pm 03:00 PM
java thread

The content of this article is about what is thread interruption in Java? What problems will Java thread interruption cause? It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

What is a thread interrupt?

In fact, there is more than one execution thread in our Java program. Only when all threads have finished running, the Java program will be considered finished. The official description is as follows: This Java program can end when all non-daemon threads finish running, or when one of the threads calls the System.exit() method.

Application scenarios of thread interruption

Let’s give an example first. For example, if we are downloading a blockbuster of more than 500M, we click to start downloading. At this time, it is equivalent to starting a thread. Go download our files. However, our internet speed is not very strong at this time. Dozens of KB files are running here. As a young man, I can’t wait any longer. If I don’t download, our first operation at this time is to end the download. This operation of downloading files is actually closer to the program. At this time, we need to interrupt the thread.

Let’s write the download code next to see how to interrupt a thread. Here I have assumed that you have mastered how to create a thread. In this program we Simulate downloading, first get the system time, and then enter the loop to get the system time each time. If the time exceeds 10 seconds, we will interrupt the thread and not continue downloading. The download speed is 1M per second:

public void run() {

       int number = 0;

       // 记录程序开始的时间
       Long start = System.currentTimeMillis();

       while (true) {

           // 每次执行一次结束的时间
           Long end = System.currentTimeMillis();

           // 获取时间差
           Long interval = end - start;

           // 如果时间超过了10秒,那么我们就结束下载
           if (interval >= 10000) {
               // 中断线程
               interrupted();
               System.err.println("太慢了,我不下了");
               return;
           } else if (number >= 500) {
               System.out.println("文件下载完成");
               // 中断线程
               interrupted();
               return;
           }

           number++;
           System.out.println("已下载" + number + "M");

           try {
               Thread.sleep(2000);
           } catch (InterruptedException e) {
               e.printStackTrace();
           }
       }
   }
Copy after login

How to interrupt the thread

The Thread class provides us with a method to interrupt the thread. Let's first take a look at how this method interrupts the thread:

public static boolean interrupted() { 
      return currentThread().isInterrupted(true);
   }
Copy after login

This The method is to check whether the current thread is interrupted. Interruption returns true, and non-interruption returns false

private native boolean isInterrupted(boolean ClearInterrupted);
Copy after login

By looking at the source code, we can find that interrupting the thread is to call the method to check whether the thread is interrupted, and set the value. is true. At this time, when you call the method to check whether the thread is interrupted, it will return true.

Everyone needs to pay attention to a problem here: the Thread.interrupted() method only modifies the status of the current thread to tell it to be interrupted, but for non-blocked threads, it only changes the interruption status, that is, Thread.isInterrupted () returns true. For threads in a cancelable blocking state, such as threads waiting on these functions, Thread.sleep(), this thread will throw an InterruptedException after receiving the interrupt signal, and the interrupt status will be set at the same time. is true.

The reason why InterruptedException is caused by thread sleep

In fact, everyone has a little understanding of this, so I will write an incorrect example. Let's take a look and solve this problem thoroughly. Figure it out:

public void run() {

       int number = 0;

       while (true) {
           // 检查线程是否被中断,中断就停止下载
           if (isInterrupted()) {

               System.err.println("太慢了,我不下了");
               return;
           } else if (number >= 500) {
               System.out.println("下载完成");
               return;
           }

           number++;
           System.out.println("已下载" + number + "M");

           try {
               Thread.sleep(2000);
           } catch (InterruptedException e) {
               e.printStackTrace();
           }
       }
   }
Copy after login

This is our main program, wait for 10 seconds and then interrupt the thread

public static void main(String[] args) throws InterruptedException {

       Thread thread = new PrimeGenerator();

       // 启动线程
       thread.start();

       // 等待10秒后中断线程
       Thread.sleep(1000);

       // 中断线程
       thread.interrupt();
   }
Copy after login

It looks like a very ordinary program, but the fact is not what you see. In fact, this This piece of code will throw InterruptedException, let's analyze the reason.

Here we must first understand that the Thread.interrupt() method will not interrupt a running thread. When the Thread.sleep() method is called, it will no longer be occupied at this time. CPU, let’s analyze our program. We have to wait 10 seconds to download. The speed of each download is 0.5M/S. That is, when we download to 5M, the waiting time has expired. At this time, we call Thread.interrupt( ) method interrupts the thread, but the sleep in the run() method will continue to be executed. It will not give up executing the following code due to the interruption. Then at this time, when it executes Thread.sleep() again, it will An InterruptedException is thrown because the current thread has been interrupted.

Speaking of which, do you already understand the reason for this exception? In addition, there are two other reasons why threads generate InterruptedException exceptions. Improper use of the wait() and join() methods can also cause threads to throw this exception.

Two ways to check whether a thread is interrupted

There is a method interrupted() in the Thread class that can be used to check when the current thread is interrupted, and isInterrupted( ) method can be used to check whether the current thread is interrupted.

The underlying method of interrupting a thread is to set this property to true, and the isInterrupted() method just returns the property value.

One difference between these two methods is that isInterrupted() cannot change the attribute value of interrupted(), but the interrupted() method can change the attribute value of interrupted, so in When determining when a thread is interrupted, we recommend using isInterrupted().

The above is the detailed content of What is thread interrupt in Java? What problems will Java thread interruption cause?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Detailed explanation of the five states of Java threads and state transition rules Detailed explanation of the five states of Java threads and state transition rules Feb 19, 2024 pm 05:03 PM

In-depth understanding of the five states of Java threads and their conversion rules 1. Introduction to the five states of threads In Java, the life cycle of a thread can be divided into five different states, including new state (NEW), ready state (RUNNABLE), Running status (RUNNING), blocking status (BLOCKED) and termination status (TERMINATED). New state (NEW): When the thread object is created, it is in the new state. At this point, the thread object has allocated enough resources to perform the task

How to solve Java thread interrupt timeout exception (InterruptedTimeoutException) How to solve Java thread interrupt timeout exception (InterruptedTimeoutException) Aug 22, 2023 am 09:51 AM

How to solve Java thread interrupt timeout exception (InterruptedTimeoutException) Introduction: In concurrent programming, thread interruption operation is a very common technical means. It can be used to terminate threads that no longer need to run, or to coordinate between multiple threads. However, sometimes thread interruption does not always complete smoothly, and interruption timeout may occur. This article will introduce how to solve the Java thread interrupt timeout exception (InterruptedTimeout

Thread safety issues in Java-java.lang.ThreadDeath Thread safety issues in Java-java.lang.ThreadDeath Jun 25, 2023 am 08:15 AM

Java is a cross-platform programming language. Because of its advantages such as portability, ease of learning and ease of use, it has become an important player in the field of computer programming. However, thread safety has always been an important issue in Java programming. Thread safety issues in Java may not seem easy to detect on the surface, but they often lead to disturbing situations. This article will explore a thread safety issue in Java: java.lang.ThreadDeath. Thread safety issues in Java in multiple threads

Methods to solve Java thread status exception (ThreadStateException) Methods to solve Java thread status exception (ThreadStateException) Aug 18, 2023 am 11:53 AM

Methods to solve Java thread state exception (ThreadStateException) Introduction: When using Java multi-thread programming, you often encounter the problem of thread state exception (ThreadStateException). When we call certain methods of the thread, if the state of the thread does not meet the requirements of the method, a ThreadStateException will be thrown. This article will introduce the causes and solutions of thread status exceptions, and give relevant code examples.

How to solve Java thread interrupt timeout error exception (ThreadInterruptedTimeoutErrorExceotion) How to solve Java thread interrupt timeout error exception (ThreadInterruptedTimeoutErrorExceotion) Aug 18, 2023 pm 07:33 PM

How to solve the Java thread interrupt timeout error exception (ThreadInterruptedTimeoutErrorException). During the Java development process, we often use multi-threading to improve the concurrency performance and efficiency of the program. However, when using threads, we may encounter some problems, such as thread timeout error exception (ThreadInterruptedTimeoutErrorException). This article will explain how to solve this problem,

A detailed description of the five states of Java threads and their characteristics and performance in multi-threaded environments A detailed description of the five states of Java threads and their characteristics and performance in multi-threaded environments Feb 18, 2024 pm 07:07 PM

Describe in detail the five states of Java threads and their characteristics and performance in a multi-threaded environment. Java is an object-oriented programming language. Its multi-threading characteristics allow us to perform multiple tasks at the same time and improve the concurrency and response of the program. sex. In Java, threads have five different states, namely new state (New), runnable state (Runnable), blocked state (Blocked), waiting state (Waiting) and terminated state (Terminated). This article will introduce this in detail

In-depth study of several states of Java threads and their impact on program execution In-depth study of several states of Java threads and their impact on program execution Feb 21, 2024 pm 11:27 PM

In-depth study of several states of Java threads and their impact on program execution. In Java, a thread is a lightweight execution unit that can run independently in a program and perform specific tasks. The status of a thread describes the different stages of a thread's execution. Understanding the status of a thread is very important for writing multi-threaded programs and optimizing program performance. This article will delve into several states of Java threads and their impact on program execution, and provide specific code examples. Several states of Java threads include: NEW (new),

Methods to solve Java inter-thread communication exception (ThreadCommunicationException) Methods to solve Java inter-thread communication exception (ThreadCommunicationException) Aug 18, 2023 pm 09:34 PM

Methods to solve Java inter-thread communication exception (ThreadCommunicationException) In Java programs, communication between threads is a very common requirement. However, due to the concurrent execution characteristics of threads, exceptions may occur in inter-thread communication, such as ThreadCommunicationException. This article will explore how to resolve this exception and give corresponding code examples. Exception background In multi-threaded programming, different threads need to share data or perform

See all articles