package exception; public class Test01 { public static void main(String[] args) { int a=1; int b=0; try{//监控区域 System.out.println(a/b); } catch (ArithmeticException e) {//可多个catch System.out.println("ArithmeticException 异常...."); } catch (Throwable e){//捕获异常()想要捕获的异常类型,Throwable是最高的,基本都能捕获 System.out.println("异常不详...."); } finally {//处理善后工作 System.out.println("无论是否有异常都执行...."); } } }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)