黑马程序员技术交流社区
标题:
try cathch异常处理的问题
[打印本页]
作者:
爽亮前程
时间:
2014-11-30 16:27
标题:
try cathch异常处理的问题
public static void method2() {
try {
int a = 10;
int b = 0;
System.out.println(a / b);
int[] arr = { 1, 2, 3 };
System.out.println(arr[3]);
System.out.println("over");
} catch (ArithmeticException ae) {
System.out.println("除数不能为0");
} catch (ArrayIndexOutOfBoundsException ae) {
System.out.println("数组越界异常");
}
}
// 针对每一个异常写一个try...catch代码。
public static void method1() {
// ArithmeticException
int a = 10;
int b = 0;
try {
System.out.println(a / b);
System.out.println("hello");
} catch (ArithmeticException ae) {
System.out.println("除数不能为0");
}
// ArrayIndexOutOfBoundsException
int[] arr = { 1, 2, 3 };
try {
System.out.println(arr[3]);
} catch (ArrayIndexOutOfBoundsException ae) {
System.out.println("数组越界异常");
}
// 继续操作
System.out.println("over");
}
}
复制代码
请问method1 和method2两种处理异常的方式,哪个执行效率高?
还有真正开发中是在怎么写的?是单独try还是整体try?
作者:
relice
时间:
2014-11-30 23:12
一般来说对方有几个异常就对应几个catch块(不要定义多余的catch块)
另外如果异常出现父类继承关系,那么应该把父类异常放在catch最下面,否则子类异常无法执行
作者:
陈国华
时间:
2014-11-30 23:23
我觉得method1 可取,因为我觉得在实际开发中一个问题解决后再开始下一个问题的话出错的概率会小一点:lol
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2