黑马程序员技术交流社区

标题: 异常疑惑??? [打印本页]

作者: 高昌德    时间: 2014-12-5 20:37
标题: 异常疑惑???
  1. class Demo
  2. {
  3.         public int div(int a,int b)throws ArithmeticException,ArrayIndexOutOfBoundsException
  4.         {
  5.                 int[] arr = new int[a];
  6.                 System.out.println(arr[5]);
  7.                 return a/b;
  8.         }
  9. }
  10. public class ExceptionDemo {

  11.         public static void main(String[] args)
  12.         {
  13.                 Demo d = new Demo();
  14.                 int x = d.div(6,1);
  15.                 System.out.println(x);
  16.                 System.out.println("over");
  17.         }
  18. }
复制代码
主函数没有处理异常为什么也能运行输出结果?





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2