您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

Java 实例 - 多个异常处理(多个catch)

2026/1/13 4:51:01发布33次查看
对异常的处理:
1,声明异常时,建议声明更为具体的异常,这样可以处理的更具体
2,对方声明几个异常,就对应几个catch块, 如果多个catch块中的异常出现继承关系,父类异常catch块放在最下面
以下实例演示了如何处理多异常:
/* author by w3cschool.cc exceptiondemo.java */ class demo { int div(int a,int b) throws arithmeticexception,arrayindexoutofboundsexception//在功能上通过throws的关键字声明该功能可能出现问题 { int []arr = new int [a]; system.out.println(arr[4]);//制造的第一处异常 return a/b;//制造的第二处异常 } } class exceptiondemo { public static void main(string[]args) //throws exception { demo d = new demo(); try { int x = d.div(4,0);//程序运行截图中的三组示例 分别对应此处的三行代码 //int x = d.div(5,0); //int x = d.div(4,1); system.out.println("x="+x); } catch (arithmeticexception e) { system.out.println(e.tostring()); } catch (arrayindexoutofboundsexception e) { system.out.println(e.tostring()); } catch (exception e)//父类 写在此处是为了捕捉其他没预料到的异常 只能写在子类异常的代码后面 //不过一般情况下是不写的 { system.out.println(e.tostring()); } system.out.println("over"); } }
以上代码运行输出结果为:
java.lang.arrayindexoutofboundsexception: 4 over
以上就是java 实例 - 多个异常处理(多个catch)的内容。
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product