public class MultiCatch {
/**
* @
param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
try{
int a =args.length;
System.out.println(a);
int b=2321/a;
int c[]={1};
c[42]=44;
}catch(ArithmeticException e){
System.out.println(e);}
catch(ArrayIndexOutOfBoundsException e){
System.out.println(e);
System.out.println("this line is out of work");
}
}
}
//////////////
以上是代码 应该是有两个异常 一个是 ArithmeticException
一个是 ArrayIndexOutOfBoundsExceptions
但是第二个catch怎么也抓不住这个异常
结构仅显示
0
java.lang.ArithmeticException: / by zero
求大神赐教啊
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/123348
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.