数组中的常见异常:
1.数组角标越界的异常:ArrayIndexOutOfBoundsException
2.空指针异常:NullPointerException
注意:一旦程序出现异常,未处理,程序将中止执行。
package day07;
/*
数组中的常见异常:
1.数组角标越界的异常:ArrayIndexOutOfBoundsException
2.空指针异常:NullPointerException
注意:一旦程序出现异常,未处理,程序将中止执行。
*/
public class ArrayExceptionTest {
public static void main(String[] args) {
//1.数组角标越界的异常:ArrayIndexOutOfBoundsException
int[] arr=new int[]{1,2,3,4,5};
//1.1
for (int i = 0; i <= arr.length; i++) {
System.out.println(arr[i]);
}
//1.2
System.out.println(arr[-2]);
//2.空指针异常:NullPointerException
//2.1
int[] arr1=new int[]{1,2,3};
arr1=null;
System.out.println(arr1[0]);
//2.2
int[][] arr2=new int[4][];
System.out.println(arr2[0][0]);
//2.3
String[] arr3=new String[]{"AA","BB","CC"};
arr3[0]=null;
System.out.println(arr3[0].toString());
}
}