当前位置:   article > 正文

线程停止的三种方式_线程停止执行

线程停止执行

线程停止的三种方式

1. 设置标志位(无法处理线程阻塞时的问题);
2. 调用Thread类提供的stop方法强行关闭线程;
3. 通过Thread类提供的interrupt方法

举例:设置标志位

class InterruptThread extends Thread{
   
    private boolean flag = true;

    public void setFlag(boolean flag) {
   
        this.flag = flag;
    }

    @Override
    public void run() {
   
        int i =0;
        while(flag){
   
            i++;
            System.out.println(Thread.currentThread().getName()+",i= "+i);
        }
    }
}
public class TestInterrupt {
   
    public static void main(String[] args) throws InterruptedException {
   
        InterruptThread t1 = new InterruptThread();
        t1.start();
        //子线程和主线程并发执行,为了看到效果,休眠1s
        Thread.sleep(1000);
        t1.setFlag(false
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/1004242
推荐阅读
相关标签
  

闽ICP备14008679号