多线程学习笔记(三)线程的中断

本文探讨了Java中线程中断的三种方法:废弃的stop()方法、Thread.interrupt()方法及使用标志位(flag)。通过四个实例演示了不同方法的应用场景及潜在问题,如线程不安全和中断标志的正确处理。

执行中断的三种方法

1.stop() 废弃方法,开发中不要使用。因为一调用,线程就立刻停止,此时有可能引发相应的线程安全性问题
2.Thread.interrupt方法
3.自行定义一个标志,用来判断是否继续执行

实例一:使用stop中断线程

public class StopDome implements Runnable{
    @Override
    public void run() {
        while (true){
            System.out.println(Thread.currentThread().getName());
        }
    }

    public static void main(String[] args) throws InterruptedException {
        Thread thread = new Thread(new StopDome());
        thread.start();
        Thread.sleep(2000L);
        thread.stop();
    }
}

实例二:使用stop方法中断线程导致的线程不安全问题

public class UnsafeStopDome extends Thread {
    public static int i = 0;
    public static int j = 0;

    @Override
    public void run(){
        i++;
        try {
            sleep(2000L);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        j++;
    }

    public void print()  {
        System.out.println("i的值为======》" + i );
        System.out.println("j的值为======》" + j );
    }

    public static void main(String[] args) throws InterruptedException {
        UnsafeStopDome unsafeStopDome = new UnsafeStopDome();
        unsafeStopDome.start();
        Thread.sleep(1000L);
        unsafeStopDome.print();
        unsafeStopDome.stop();//当现在执行中断时,导致了计算结果出错
    }
}

实例三:使用interrupt方法中断进程

public class InterruptDome implements Runnable{
    @Override
    public void run() {
        while (!Thread.currentThread().isInterrupted()){
            System.out.println(Thread.currentThread().getName());
        }
    }

    public static void main(String[] args) throws InterruptedException {
        Thread thread = new Thread(new InterruptDome());
        thread.start();
        Thread.sleep(1000L);
        thread.interrupt();//会为线程打上,线程中断的标记,待线程运行完成以后,执行中断
    }
}

实例四:使用flag标志位结束进程

public class FlagDome implements Runnable {
    public static volatile boolean FLAG = true;

    @Override
    public void run() {
        while (FLAG){
            System.out.println(Thread.currentThread().getName());
        }
    }

    public static void main(String[] args) throws InterruptedException {
        Thread thread = new Thread(new FlagDome());
        thread.start();
        Thread.sleep(1000L);
        FLAG=false;
    }
}

 

转载于:https://www.cnblogs.com/huangzhimin/p/11555617.html

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值