interrupted()和isInterrupted()比较+终止线程的正确方法+暂停线程
interrupted():测试当前线程【运行此方法的当前线程】是否已经是中断状态,执行后具有将状态标志清除为false的功能。
isInterrupted():测试线程对象是否已经是中断状态,但不清除状态标志。
interrupted()的例子:
public static void main(String[] args) {
try{
MyThread thread = new MyThread();
thread.start();
Thread.sleep(1000);
thread.interrupt();
syso(thread.interrupted());
syso(thread.interrupted());
}catch(InterruptedException e) {
e.printStackTrace();
}
}
//运行结果
false
false
从上可以看出thread.interrupted()执行的是运行当前方法的线程,而不是thread线程,而由于main线程一直没有停止,所以一直是false。
public static void main(String[] args) {
Thread.currentThread().interrupt();
syso(Thread.interrupted());
syso(Thread.interrupted());
}
//运行结果
true
false
从上可以看出Thread.currentTrhead().interrupt()将main线程停止了,所以下面第一个是true状态,而第二个是false状态,就是因为interrupted()方法有清空状态标志的功能。
isInterrupted()的例子:
public static void main(String[] args) {
try{
MyThread thread = new MyThread();
thread.start();
Thread.sleep(1000);
thread.interrupt();
syso(thread.isInterrupted());
syso(thread.isInterrupted());
}catch(InterruptedException e) {
e.printStackTrace();
}
}
//运行结果
true
true
从上面可以看出isInterrupted()就是线程对象是否中断。
interrupt()并不能真正的结束线程:
public class MyThread extends Thread{
public void run() {
super.run();
for(int i = 0; i < 5; i++) {
if(this.interrupted()) {
System.out.println("已经是停止状态了!我要退出了!");
break;
}
System.out.println("i = " + i);
}
System.out.println("for之后代码");
}
}
public class Main {
public static void main(String[] args) {
try {
MyThread thread = new MyThread();
thread.start();
Thread.sleep(2000);
thread.interrupt();
} catch(InterruptedException e) {
e.printStackTrace();
}
System.out.println("结束了");
}
}
运行结果:

可以发现interrupt()并没有真正终止线程。下面介绍几种可以终止线程的方法:
1.异常法【建议使用】:
if(this.interrupted()) {
System.out.println("已经是停止状态了!我要退出了!");
throw new InterruptedException();
break;
}
在上面需要正常终止的地方抛出异常即可。
此方法最推荐使用,因为在catch块中还可以将异常向上抛,使线程停止的事件得以传播。
2.在sleep中interrupt():
public class SleepThread extends Thread{
public void run() {
super.run();
try {
System.out.println("run begin");
Thread.sleep(200000);
System.out.println("run end");
} catch(InterruptedException e) {
System.out.println("沉睡中停止,进入catch");
e.printStackTrace();
}
}
}
public class SleepMain {
public static void main(String[] args) {
try {
SleepThread thread = new SleepThread();
thread.start();
Thread.sleep(200);
thread.interrupt();
} catch(InterruptedException e) {
System.out.println("main catch");
e.printStackTrace();
}
System.out.println("结束了");
}
}
运行结果:

3.使用作废的stop()方法:
调用stop()方法会强制让线程停止则有可能使一些清理性的工作得不到完成。并且有可能对锁定对象进行了“解锁”,导致数据得不到同步处理,出现数据不一致问题。
4.return法:
public class ReturnThread extends Thread{
public void run() {
while(true) {
if(this.isInterrupted()) {
System.out.println("停止了!");
return;
}
System.out.println("timer" + System.currentTimeMillis());
}
}
}
public class ReturnMain {
public static void main(String[] args) throws InterruptedException {
ReturnThread thread = new ReturnThread();
thread.start();
Thread.sleep(20);
thread.interrupt();
}
}
在需要停止的地方return即可。

暂停线程所使用的suspend()和resume()已经弃用,这里看一下suspend()方法:
当某个线程的suspend()方法被调用时,该线程会被挂起。如果该线程占有了锁,则它不会释放锁。即,线程在挂起的状态下还持有锁。
public class MyThread extends Thread{
private long i = 0;
public void run() {
while(true) {
i++;
//syso是一个同步方法
System.out.println(i);
}
}
}
public class Main {
public static void main(String[] args) {
try {
MyThread thread = new MyThread();
thread.start();//启动一个线程'thread'
Thread.sleep(1000);//使当前线程(main线程)睡眠
thread.suspend();//挂起线程'thread'
//下面这一行不会执行,因为println一直被占用
System.out.println("main end!");
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
下面看一下println()源码:
public void println(long x) {
synchronized (this) {
print(x);
newLine();
}
}
从上可以看出suspend()暂停线程之后不会释放锁。
而在main中调用resume(),可以恢复线程,线程执行完毕就会释放锁。
interrupted()和isInterrupted()比较+终止线程的正确方法+暂停线程的更多相关文章
- java多线线程停止正确方法
//军队线程 //模拟作战双方的行为 public class ArmyRunnable implements Runnable { //volatile保证了线程可以正确的读取其他线程写入的值 // ...
- 零基础学习java------day18------properties集合,多线程(线程和进程,多线程的实现,线程中的方法,线程的声明周期,线程安全问题,wait/notify.notifyAll,死锁,线程池),
1.Properties集合 1.1 概述: Properties类表示了一个持久的属性集.Properties可保存在流中或从流中加载.属性列表中每个键及其对应值都是一个字符串 一个属性列表可包含另 ...
- java线程interrupt、interrupted 、isInterrupted区别
前言 在分析interrupt之前,应该先了解java里线程有5种状态,其中有一个阻塞状态,interrupt和阻塞有关. interrupt() 方法 作用于要中断的那个线程. interrupt( ...
- interrupt ,interrupted 和 isInterrupted
1.interrupt interrupt方法用于中断线程.调用该方法的线程的状态为将被置为"中断"状态. 注意:线程中断仅仅是置线程的中断状态位,不会停止线程.需要用户自己去监 ...
- java---interrupt、interrupted和isInterrupted的区别
1.interrupt() interrupt方法用于中断线程.调用该方法的线程的状态为将被置为"中断"状态. 注意:线程中断仅仅是置线程的中断状态位,不会停止线程.需要用户自己 ...
- Java并发编程之线程生命周期、守护线程、优先级、关闭和join、sleep、yield、interrupt
Java并发编程中,其中一个难点是对线程生命周期的理解,和多种线程控制方法.线程沟通方法的灵活运用.这些方法和概念之间彼此联系紧密,共同构成了Java并发编程基石之一. Java线程的生命周期 Jav ...
- java线程相关基本方法
java线程中常用的基本方法有wait,notify,notifyAll,sleep,join,yield等. 线程的生命周期一共分为五个部分,分别是:新建(New).就绪(Runnable).运行( ...
- 线程概念( 线程的特点,进程与线程的关系, 线程和python理论知识,线程的创建)
参考博客: https://www.cnblogs.com/xiao987334176/p/9041318.html 线程概念的引入背景 进程 之前我们已经了解了操作系统中进程的概念,程序并不能单独运 ...
- python 全栈开发,Day41(线程概念,线程的特点,进程和线程的关系,线程和python 理论知识,线程的创建)
昨日内容回顾 队列 队列 : 先进先出.数据进程安全 队列实现方式: 管道 + 锁 生产者消费者模型 : 解决数据供需不平衡 管道 双向通信 数据进程不安全 EOFError: 管道是由操作系统进行引 ...
随机推荐
- BZOJ 1263 整数划分(数学+高精度)
我们不妨考虑可以划分为实数的情况,设划分为x份实数,使得总乘积最大. 易得当每一份都相等时乘积最大.即 ans=(n/x)^x. 现在只需要求出这个函数取得最大值的时候x的取值了. 两边取对数,则有l ...
- 【bzoj1131】[POI2008]Sta 树形dp
题目描述 给出一个N个点的树,找出一个点来,以这个点为根的树时,所有点的深度之和最大 输入 给出一个数字N,代表有N个点.N<=1000000 下面N-1条边. 输出 输出你所找到的点,如果具有 ...
- 【bzoj1688】[USACO2005 Open]Disease Manangement 疾病管理 状态压缩dp+背包dp
题目描述 Alas! A set of D (1 <= D <= 15) diseases (numbered 1..D) is running through the farm. Far ...
- python 深浅copy的例子
1. copy.copy 浅拷贝 只拷贝父对象,不会拷贝对象的内部的子对象.2. copy.deepcopy 深拷贝 拷贝对象及其子对象一个很好的例子:import copya = [1, 2, 3, ...
- [洛谷P1440]求m区间内的最小值
题目大意:给你n个数,求出每个数前m位的最小值 题解:单调队列,用一个可以双向弹出的队列来存一串数,满足里面的数具有单调性,我们可以假设它是单调递增的,即求最小的数.那么可以把要插入的这个数与队尾元素 ...
- ARC077D 11 组合数
---题面--- 题解: 做这道题的时候zz了,,,, 写了个很复杂的式子,然而后面重新想就发现很简单了. 考虑用总的情况减去重复的. 假设唯一重复的两个数的位置分别是l和r,那么唯一会导致重复的方案 ...
- BZOJ4563:[HAOI2016]放棋子——题解
https://www.lydsy.com/JudgeOnline/problem.php?id=4563 给你一个N*N的矩阵,每行有一个障碍,数据保证任意两个障碍不在同一行,任意两个障碍不在同一列 ...
- BZOJ1997:[HNOI2010]PLANAR——题解
https://www.lydsy.com/JudgeOnline/problem.php?id=1997 https://www.luogu.org/problemnew/show/P3209 若能 ...
- BZOJ2002:[HNOI2010]弹飞绵羊——题解
http://www.lydsy.com/JudgeOnline/problem.php?id=2002 https://www.luogu.org/problemnew/show/P3203 某天, ...
- snmp实用篇
简单网络管理协议(SNMP)是 TCP/IP协议簇的一个应用层协议.在1988年被制定,并被Internet体系结构委员会(IAB)采纳作为一个短期的网络管理解决方案:由于 SNMP的简单性,在Int ...