黑马程序员技术交流社区

标题: try cathch异常处理的问题 [打印本页]

作者: 爽亮前程    时间: 2014-11-30 16:27
标题: try cathch异常处理的问题

  1. public static void method2() {
  2.                 try {
  3.           int a = 10;
  4.     int b = 0;
  5.           System.out.println(a / b);

  6.           int[] arr = { 1, 2, 3 };
  7.                         System.out.println(arr[3]);

  8.           System.out.println("over");
  9.                 } catch (ArithmeticException ae) {
  10.                         System.out.println("除数不能为0");
  11.                 } catch (ArrayIndexOutOfBoundsException ae) {
  12.                         System.out.println("数组越界异常");
  13.                 }
  14.         }

  15.         // 针对每一个异常写一个try...catch代码。
  16.         public static void method1() {
  17.                 // ArithmeticException
  18.                 int a = 10;
  19.                 int b = 0;
  20.                 try {
  21.                         System.out.println(a / b);
  22.                         System.out.println("hello");
  23.                 } catch (ArithmeticException ae) {
  24.                         System.out.println("除数不能为0");
  25.                 }

  26.                 // ArrayIndexOutOfBoundsException
  27.                 int[] arr = { 1, 2, 3 };
  28.                 try {
  29.                         System.out.println(arr[3]);
  30.                 } catch (ArrayIndexOutOfBoundsException ae) {
  31.                         System.out.println("数组越界异常");
  32.                 }
  33.                 // 继续操作
  34.                 System.out.println("over");
  35.         }
  36. }
复制代码

请问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