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

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();
           }
       }
   }

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);
   }

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);

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();
           }
       }
   }

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();
   }

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
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
Why is Java a popular choice for developing cross-platform desktop applications?Why is Java a popular choice for developing cross-platform desktop applications?Apr 25, 2025 am 12:23 AM

Javaispopularforcross-platformdesktopapplicationsduetoits"WriteOnce,RunAnywhere"philosophy.1)ItusesbytecodethatrunsonanyJVM-equippedplatform.2)LibrarieslikeSwingandJavaFXhelpcreatenative-lookingUIs.3)Itsextensivestandardlibrarysupportscompr

Discuss situations where writing platform-specific code in Java might be necessary.Discuss situations where writing platform-specific code in Java might be necessary.Apr 25, 2025 am 12:22 AM

Reasons for writing platform-specific code in Java include access to specific operating system features, interacting with specific hardware, and optimizing performance. 1) Use JNA or JNI to access the Windows registry; 2) Interact with Linux-specific hardware drivers through JNI; 3) Use Metal to optimize gaming performance on macOS through JNI. Nevertheless, writing platform-specific code can affect the portability of the code, increase complexity, and potentially pose performance overhead and security risks.

What are the future trends in Java development that relate to platform independence?What are the future trends in Java development that relate to platform independence?Apr 25, 2025 am 12:12 AM

Java will further enhance platform independence through cloud-native applications, multi-platform deployment and cross-language interoperability. 1) Cloud native applications will use GraalVM and Quarkus to increase startup speed. 2) Java will be extended to embedded devices, mobile devices and quantum computers. 3) Through GraalVM, Java will seamlessly integrate with languages ​​such as Python and JavaScript to enhance cross-language interoperability.

How does the strong typing of Java contribute to platform independence?How does the strong typing of Java contribute to platform independence?Apr 25, 2025 am 12:11 AM

Java's strong typed system ensures platform independence through type safety, unified type conversion and polymorphism. 1) Type safety performs type checking at compile time to avoid runtime errors; 2) Unified type conversion rules are consistent across all platforms; 3) Polymorphism and interface mechanisms make the code behave consistently on different platforms.

Explain how Java Native Interface (JNI) can compromise platform independence.Explain how Java Native Interface (JNI) can compromise platform independence.Apr 25, 2025 am 12:07 AM

JNI will destroy Java's platform independence. 1) JNI requires local libraries for a specific platform, 2) local code needs to be compiled and linked on the target platform, 3) Different versions of the operating system or JVM may require different local library versions, 4) local code may introduce security vulnerabilities or cause program crashes.

Are there any emerging technologies that threaten or enhance Java's platform independence?Are there any emerging technologies that threaten or enhance Java's platform independence?Apr 24, 2025 am 12:11 AM

Emerging technologies pose both threats and enhancements to Java's platform independence. 1) Cloud computing and containerization technologies such as Docker enhance Java's platform independence, but need to be optimized to adapt to different cloud environments. 2) WebAssembly compiles Java code through GraalVM, extending its platform independence, but it needs to compete with other languages ​​for performance.

What are the different implementations of the JVM, and do they all provide the same level of platform independence?What are the different implementations of the JVM, and do they all provide the same level of platform independence?Apr 24, 2025 am 12:10 AM

Different JVM implementations can provide platform independence, but their performance is slightly different. 1. OracleHotSpot and OpenJDKJVM perform similarly in platform independence, but OpenJDK may require additional configuration. 2. IBMJ9JVM performs optimization on specific operating systems. 3. GraalVM supports multiple languages ​​and requires additional configuration. 4. AzulZingJVM requires specific platform adjustments.

How does platform independence reduce development costs and time?How does platform independence reduce development costs and time?Apr 24, 2025 am 12:08 AM

Platform independence reduces development costs and shortens development time by running the same set of code on multiple operating systems. Specifically, it is manifested as: 1. Reduce development time, only one set of code is required; 2. Reduce maintenance costs and unify the testing process; 3. Quick iteration and team collaboration to simplify the deployment process.

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.