java中如何靠着throw抛出一个异常来停止线程

把上面的程序return,变成自己通过throw主动抛出异常,结果是一样的。

例:1.5.1_1-本章源码
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
class MyThreadMark_to_win extends Thread{
    private boolean stop;
    public void run() {
        for (int i = 0; i < 100; i++) {
            if (stop) {
                System.out.println("退出了");
                throw new ArithmeticException("divide by 0");
            }
            try {
                Thread.sleep(200);
            } catch (Exception e) {
                e.printStackTrace();

            }
            System.out.println("i = " + i);
        }
    }

    public void setStop(boolean stop) {
        this.stop = stop;
    }
}

public class Test {
    public static void main(String[] args) {
        MyThreadMark_to_win mt = new MyThreadMark_to_win();
        mt.start();
        try {
            Thread.sleep(300);
        } catch (Exception e) {
        }
        mt.setStop(true);
    }
}

输出结果:

i = 0
Exception in thread "Thread-0" java.lang.ArithmeticException: divide by 0
    at MyThreadMark_to_win.run(Test.java:7)
i = 1
退出了