------- android培训、java培训、期待与您交流! ----------
数组两种异常
数组脚标越界异常(ArrayIndexOutOfBoundsException)
如:
int[] arr=new int[2];
System.out.println(arr[3]);
运行通过,编译错误:访问数组脚标是越界
空指针异常(NullPointerExecption)
int[] arr=null;
System.out.println(arr[0]);
arr引用没有指向实体,却在操作实体中的元素时,
运行通过,编译错误:空指针异常