A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 爽亮前程 中级黑马   /  2014-11-30 16:27  /  1154 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


  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?






2 个回复

倒序浏览
一般来说对方有几个异常就对应几个catch块(不要定义多余的catch块)
另外如果异常出现父类继承关系,那么应该把父类异常放在catch最下面,否则子类异常无法执行
回复 使用道具 举报
我觉得method1 可取,因为我觉得在实际开发中一个问题解决后再开始下一个问题的话出错的概率会小一点:lol
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马