-
Notifications
You must be signed in to change notification settings - Fork 120
Java线程中断机制
zhpanvip edited this page Jun 27, 2021
·
3 revisions
线程中断即线程运行过程中被其他线程给打断了,线程中断相关的方法有:
- 1、java.lang.Thread#interrupt
中断目标线程,给目标线程发一个中断信号,线程被打上中断标记。
- 2.java.lang.Thread#isInterrupted()
判断目标线程是否被中断,不会清除中断标记。
- 3.java.lang.Thread#interrupted Thread中的一个静态方法,判断目标线程是否被中断,如果是被标记了中断状态,会清除中断标记。
interrupt方法中断线程仅仅是设置了一个中断标记,如果在线程run方法中不去相应中断,则中断标记不会对线程产生任何影响。
如下代码,thread线程并不会被中断
public static void testInterrupt() {
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
while (true) {
System.out.println("thread " + Thread.currentThread().getName() + " is running");
}
}
});
thread.start();
thread.interrupt();
}
如果要中断线程,则需要判断interrupt标记位,然后结束线程
public static void testInterrupt() {
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
while (true) {
if (Thread.currentThread().isInterrupted()) {
System.out.println("thread " + Thread.currentThread().getName() + " is interrupted");
return;
}
System.out.println("thread " + Thread.currentThread().getName() + " is running");
}
}
});
thread.start();
thread.interrupt();
}
当让线程进入休眠状态后,中断标记失效,代码如下:
public static void testInterrupt2() throws InterruptedException {
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
while (true) {
if (Thread.currentThread().isInterrupted()) {
System.out.println("thread " + Thread.currentThread().getName() + " is interrupted");
return;
}
System.out.println("thread " + Thread.currentThread().getName() + " is running");
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
});
thread.start();
Thread.sleep(2000);
thread.interrupt();
}
输出结果如下:
thread Thread-0 is running
java.lang.InterruptedException: sleep interrupted
at java.base/java.lang.Thread.sleep(Native Method)
at thread.InterruptDemo$2.run(InterruptDemo.java:33)
at java.base/java.lang.Thread.run(Thread.java:834)
thread Thread-0 is running
thread Thread-0 is running
thread Thread-0 is running
thread Thread-0 is running
thread Thread-0 is running
thread Thread-0 is running
thread Thread-0 is running
thread Thread-0 is running
...
可以看到线程抛出了一个中断异常,之后线程仍然在执行。
sleep状态的线程在调用interrupt后会抛出InterruptedException,并清除interrupt标记,因此线程会继续运行。如果需要打断sleep状态的线程,需要捕获InterruptedException异常后再次调用interrupt方法。如下:
public static void testInterrupt2() throws InterruptedException {
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
while (true) {
if (Thread.currentThread().isInterrupted()) {
System.out.println("thread " + Thread.currentThread().getName() + " is interrupted");
return;
}
System.out.println("thread " + Thread.currentThread().getName() + " is running");
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
Thread.currentThread().interrupt();
}
}
}
});
thread.start();
Thread.sleep(2000);
thread.interrupt();
}
输出结果如下:
thread Thread-0 is running
java.lang.InterruptedException: sleep interrupted
at java.base/java.lang.Thread.sleep(Native Method)
at thread.InterruptDemo$2.run(InterruptDemo.java:33)
at java.base/java.lang.Thread.run(Thread.java:834)
thread Thread-0 is interrupted
- JMM与volatile关键字
- synchronized的实现原理
- synchronized等待与唤醒机制
- AQS的实现原理
- ReentrantLock的实现原理
- ReentrantLock等待与唤醒机制
- CAS、Unsafe类以及Automic并发包
- ThreadLocal的实现原理
- 线程池的实现原理
- Java线程中断机制
- 多线程与并发常见面试题
- Android基础知识汇总
- MVC、MVP与MVVM
- SparseArray实现原理
- ArrayMap的实现原理
- SharedPreferences
- Bitmap
- Activity的启动模式
- Fragment核心原理
- 组件化项目架构搭建
- 组件化WebView架构搭建
- 为什么 Activity.finish() 之后 10s 才 onDestroy ?
- Binder与AIDL
- Binder实现原理
- Android系统启动流程
- InputManagerService
- WindowManagerService
- Choreographer详解
- SurfaceFlinger
- ViewRootImpl
- ActivityManagerService
- APP启动流程
- PMS安装与签名校验
- Dalvik与ART
- 内存优化策略
- UI界面及卡顿优化
- App启动优化
- ANR问题
- 包体积优化
- APK打包流程
- 电池电量优化
- Android屏幕适配
- 线上性能监控1--线上监控切入点
- 线上性能监控2--Matrix实现原理
- Glide实现原理
- OkHttp实现原理
- Retrofit实现原理
- RxJava实现原理
- RxJava中的线程切换与线程池
- LeakCanary实现原理
- ButterKnife实现原理
- ARouter实现原理
- Tinker实现原理
- 2. 两数相加
- 19.删除链表的倒数第 N 个结点
- 21. 合并两个有序链表
- 24. 两两交换链表中的节点
- 61. 旋转链表
- 86. 分隔链表
- 92. 反转链表 II
- 141. 环形链表
- 160. 相交链表
- 206. 反转链表
- 206 反转链表 扩展
- 234. 回文链表
- 237. 删除链表中的节点
- 445. 两数相加 II
- 面试题 02.02. 返回倒数第 k 个节点
- 面试题 02.08. 环路检测
- 剑指 Offer 06. 从尾到头打印链表
- 剑指 Offer 18. 删除链表的节点
- 剑指 Offer 22. 链表中倒数第k个节点
- 剑指 Offer 35. 复杂链表的复制
- 1. 两数之和
- 11. 盛最多水的容器
- 53. 最大子序和
- 75. 颜色分类
- 124.验证回文串
- 167. 两数之和 II - 输入有序数组 -169. 多数元素
- 189.旋转数组
- 209. 长度最小的子数组
- 283.移动0
- 303.区域和检索 - 数组不可变
- 338. 比特位计数
- 448. 找到所有数组中消失的数字
- 643.有序数组的平方
- 977. 有序数组的平方