停止线程
- 不推荐使用jdk提供的stop()、destroy()方法停止线程
- 推荐线程自己停止下来
- 建议使用一个标志位进行终止变量,当flag=false时,线程停止
比如
package com.Thread;
public class Teststop implements Runnable{
private boolean flag = true;
@Override
public void run() {
int i = 0;
while (flag){
System.out.println("线程正在运行"+i++);
}
}
public void stop(){
this.flag = false;
}
public static void main(String[] args) {
Teststop teststop = new Teststop();
new Thread(teststop).start();
for(int i=0;i<=100000;i++){
if(i==90000) {
teststop.stop();
System.out.println("线程已结束");
}
}
}
}
本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。