java 线程中断的方法_java线程中断方法

java线程中断的方法。

Thread.stop()

stop方法可以直接结束线程,并立即会释放掉该线程持有的锁,方法过去暴力容易造成数据不一致。目前属于废弃方法不建议直接使用。

public class ThreadInteruptTest {

@SuppressWarnings("deprecation")

public static void main(String[] args) {

Thread tA = new Thread(new Runnable() {

@Override

public void run() {

while(true) {

System.out.println("A thread runnint ...");

}

}

});

tA.start();

tA.stop();

}

}

Thread.interrupt()

通过interrupt方法,可以给线程设立个中断标记。结合Thread.isInterrupted()方法和static Thread.interrupted()方法来判断是否终止线程。Thread.isInterrupted()不会清除中断标记。static Thread.interrupted()会清除中断标记。

public class ThreadInteruptTest {

public static void main(String[] args) {

Thread tA = new Thread(new Runnable() {

@Override

public void run() {

while(true) {

if(Thread.currentThread().isInterrupted()) {//Thread.interrupted()

System.out.println("A thread exit ...");

break;

}

System.out.println("A thread runnint ...");

}

}

});

tA.start();

tA.interrupt();

}

}

Thread.sleep(time)

Thread.sleep方法会因中断抛出InterruptedException异常。如果线程中包含sleep方法休眠。sleep方法抛出InterruptedException异常时会清除中断标记。我们需要手动捕获异常重新设置中断标记。

public class ThreadInteruptTest {

public static void main(String[] args) {

Thread tA = new Thread(new Runnable() {

@Override

public void run() {

while(true) {

if(Thread.currentThread().isInterrupted()) {//Thread.interrupted()

System.out.println("A thread exit ...");

break;

}

System.out.println("A thread runnint ...");

try {

Thread.sleep(1000);

} catch (InterruptedException e) {

Thread.currentThread().interrupt();

}

}

}

});

tA.start();

tA.interrupt();

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值