停止线程
  • 不推荐使用jdk提供的stop()、destroy()方法停止线程
  • 推荐线程自己停止下来
  • 建议使用一个标志位进行终止变量,当flag=false时,线程停止
    比如
package com.Thread;

public class Teststop implements Runnable{
    private boolean flag = true;

    @Override
    public void run() {
        int i = 0;
        while (flag){
            System.out.println("线程正在运行"+i++);
        }
    }

    public void stop(){
        this.flag = false;
    }

    public static void main(String[] args) {
        Teststop teststop = new Teststop();

        new Thread(teststop).start();

        for(int i=0;i<=100000;i++){
            if(i==90000) {
                teststop.stop();
                System.out.println("线程已结束");
            }
        }
    }
}