【多线程】——停止线程的三种方式
原创
©著作权归作者所有:来自51CTO博客作者mb62e351395277e的原创作品,请联系作者获取转载授权,否则将追究法律责任
前提
停止线程是在多线程开发时非常重要的方式,掌握线程的停止可以对线程的停止进行有效的处理。停止线程在Java中不像break那样干脆,而需要一些技巧性。
停止线程的方式有三种,分别展示一下
方式一
使用退出标识,使得线程正常退出,即当run方法完成后进程终止。
public void run() {
while(flag){
//do something
}
}
利用标识符flag判定线程是否继续执行。
方式二
使用stop强行中断线程(此方法为作废过期方法),不推荐使用,暴力终止,可能使一些清理性的工作得不到完成。还可能对锁定的内容进行解锁,容易造成数据不同步的问题。
方式三
使用interrupt方法中断线程。
在Thread.java类里提供了两种方法判断线程是否为停止的。
this.interrupted():测试当前线程是否已经中断(静态方法)。如果连续调用该方法,则第二次调用将返回false。在api文档中说明interrupted()方法具有清除状态的功能。执行后具有将状态标识清除为false的功能。
this.isInterrupted():测试线程是否已经中断,但是不能清除状态标识。
线程停止——抛异常法
public class MyThread4 extends Thread {
@Override
public void run() {
super.run();
for (int i = 0; i < 50000; i++) {
if (this.isInterrupted()) {
System.out.println( "线程已经结束,我要退出" );
break;
}
System.out.println( "i=" + (i + 1) );
}
System.out.println( "我是for下面的语句,我被执行说明线程没有真正结束" );
}
}
public static void main(String[] args) {
try {
MyThread4 myThread4 = new MyThread4();
myThread4.start();
Thread.sleep( 20);
myThread4.interrupt();
} catch (InterruptedException e) {
System.out.println( "main catch" );
e.printStackTrace();
}
}
根据打印结果发现for后面的内容依旧会执行,为了解决这种问题,可以采用抛异常的方式,或return的方式终止线程。一般推荐抛异常的方式,这样才能使得线程停止得以扩散。
public class MyThread4 extends Thread {
@Override
public void run() {
super.run();
try {
for (int i = 0; i < 50000; i++) {
if (this.isInterrupted()) {
System.out.println( "线程已经结束,我要退出" );
// return;
throw new InterruptedException();
}
System.out.println( "i=" + (i + 1) );
}
System.out.println( "我是for下面的语句,我被执行说明线程没有真正结束" );
} catch (InterruptedException e) {
System.out.println( "进入MyThread.java类中run方法的catch异常了" );
e.printStackTrace();
}
}
}
在沉睡中停止
先sleep,后interrupt
@Override
public void run() {
super.run();
try {
System.out.println( "begin run" );
Thread.sleep( 500 );
System.out.println( "begin end" );
} catch (InterruptedException e) {
System.out.println("在沉睡中终止");
e.printStackTrace();
}
}
public static void main(String[] args) {
try {
MyThread5 thread5 = new MyThread5();
thread5.start();
Thread.sleep( 20 );
thread5.interrupt();
} catch (InterruptedException e) {
System.out.println( "main catch" );
e.printStackTrace();
}
}
从打印结果看,sleep状态下停止某一个线程,会进入catch语句,并清除状态值,变成false
先interrupt后sleep
try {
for (int i = 0; i < 10000; i++) {
System.out.println( "i=" +(i + 1) );
}
System.out.println( "run begin" );
Thread.sleep( 200 );
System.out.println( "run end" );
} catch (InterruptedException e) {
System.out.println( "先停止,后sleep" );
e.printStackTrace();
}
public static void main(String[] args) {
MyThread5 thread5 = new MyThread5();
thread5.start();
thread5.interrupt();
}
任务执行完成后,才抛出异常!
总结
很基础的内容,多加积累!