C/C++教程

异常exception

本文主要是介绍异常exception,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

public class Test01 {
    public static void main(String[] args) {
    new Test01().device(1,0);
    }
    public int device(int a,int b) throws ArithmeticException {//throws用在参数后面
        if (b==0){
            throw new ArithmeticException();//throw用在方法体中
        }
        System.out.println("有异常");
        return a/b;

    }
}
/*        int a=1,b=0;
        try { //try是监控区域,监控方法体中的代码是否有异常
            System.out.println(a/b);
        } catch (ArithmeticException e){//catch根据异常的类型是捕获异常
            System.out.println("ArithmeticException");
        }
        finally {//用于收尾阶段
            System.out.println("异常已捕获");
        }*/

 

这篇关于异常exception的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!