


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!

深入了解Java线程的五种状态及其转换规则一、线程的五种状态介绍在Java中,线程的生命周期可以分为五个不同的状态,包括新建状态(NEW)、就绪状态(RUNNABLE)、运行状态(RUNNING)、阻塞状态(BLOCKED)和终止状态(TERMINATED)。新建状态(NEW):当线程对象创建后,它就处于新建状态。此时,线程对象已经分配了足够的资源来执行任务

Java是一种跨平台的编程语言,因为其可移植、易学易用等优点,它已经成为了计算机编程领域中的重要一员。然而,在Java编程中,线程安全一直都是一个重要的问题,Java中的线程安全问题表面上看起来可能不是很容易被发现,但却经常会出现让人不安的情况。本文将探讨Java中的一个线程安全问题:java.lang.ThreadDeath。Java中的线程安全问题在多线

如何解决Java线程中断超时异常(InterruptedTimeoutException)引言:在并发编程中,线程中断操作是一种非常常用的技术手段。它可以用于中止不再需要运行的线程,或者在多个线程之间进行协作。然而,有时候线程中断并不总是能够顺利地完成,可能会出现中断超时的情况。本文将介绍如何解决Java线程中断超时异常(InterruptedTimeout

解决Java线程状态异常(ThreadStateException)的方法引言:在使用Java多线程编程时,经常会遇到线程状态异常(ThreadStateException)的问题。当我们调用线程的某些方法时,如果线程的状态不符合方法的要求,就会抛出ThreadStateException异常。本文将介绍线程状态异常的产生原因以及解决方法,并给出相关的代码示

如何解决Java线程中断超时错误异常(ThreadInterruptedTimeoutErrorException)在Java开发过程中,我们经常会使用多线程来提高程序的并发性能和效率。然而,在使用线程时,我们可能会遇到一些问题,比如线程超时错误异常(ThreadInterruptedTimeoutErrorException)。本文将介绍如何解决这个问题,

深入研究Java线程的几种状态及其对程序执行的影响在Java中,线程是一种轻量级的执行单位,可以在程序中独立运行并执行特定的任务。线程的状态是描述线程在执行过程中的不同阶段,了解线程的状态对于编写多线程程序以及优化程序性能非常重要。本文将深入研究Java线程的几种状态以及它们对程序执行的影响,并提供具体的代码示例。Java线程的几种状态包括:NEW(新建)、

细说Java线程的五种状态及其在多线程环境下的特点与表现Java是一种面向对象的编程语言,其多线程的特性使得我们可以同时执行多个任务,提高程序的并发性和响应性。在Java中,线程有五种不同的状态,分别是新建状态(New)、可运行状态(Runnable)、阻塞状态(Blocked)、等待状态(Waiting)和终止状态(Terminated)。本文将详细介绍这

解决Java线程间通信异常(ThreadCommunicationException)的方法在Java程序中,线程间的通信是非常常见的需求。然而,由于线程的并发执行特性,线程间通信可能会出现异常,如ThreadCommunicationException。本文将探讨如何解决这种异常,并给出相应的代码示例。异常背景在多线程编程中,不同线程之间需要共享数据或进行


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
