如何停止一个正在运行的线程?

本文探讨了在Java中如何通过volatile关键字确保主线程修改的flag能在子线程中实时感知,以及如何使用interrupt方法优雅地停止线程。示例代码展示了在无阻塞和阻塞情况下,如何利用interrupt进行线程中断。
摘要由CSDN通过智能技术生成

设置flag

主线程修改flag之后确保子线程能感知到改变,然后子线程跳出循环

public class Main {
    static volatile boolean flag = true;

    public static void main(String[] args) throws ExecutionException, InterruptedException {
        Thread thread = new Thread(() -> {
            System.out.println("start");
            while (flag) {

            }
            System.out.println("end");
        });
        thread.start();

        Thread.sleep(3000);
        flag = false;
    }
}

使用stop

不推荐使用

public class Main {

    public static void main(String[] args) throws ExecutionException, InterruptedException {
        Thread thread = new Thread(() -> {
            System.out.println("start");
            while (true) {

            }
        });
        thread.start();

        Thread.sleep(3000);
        thread.stop();
    }
}

使用interrupt

无阻塞情况

public class Main {

    public static void main(String[] args) throws ExecutionException, InterruptedException {
        Thread thread = new Thread(() -> {
            System.out.println("start");
            while (true) {
                //子线程内部没有阻塞(使用sleep),则调用thread.interrupt()之后,打断标志已经被设置为true。
                if (Thread.currentThread().isInterrupted()) {
                    break;
                }
            }
            System.out.println("end");
        });
        thread.start();

        Thread.sleep(3000);
        thread.interrupt();
    }
}

阻塞情况

public class Main {

    public static void main(String[] args) throws ExecutionException, InterruptedException {
        System.out.println("start");
        Thread thread = new Thread(() -> {
            while (true) {
                //sleep造成阻塞,调用thread.interrupt()不会把打断标志置为true,而是抛出打断异常,所以需要在捕获异常处再次调用一次打断
                if (Thread.currentThread().isInterrupted()) {
                    break;
                }
                try {
                    Thread.sleep(1000);
                    System.out.println("...");
                } catch (InterruptedException e) {
                    System.err.println(e.getMessage());
                    Thread.currentThread().interrupt();
                }
            }
            System.out.println("end");
        });
        thread.start();

        Thread.sleep(3000);
        thread.interrupt();
    }

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值