package day4_array; /* *数组中的常见异常: 1.数组角标越界的异常 ArrayIndexOutOfBoundsException 2.空指针异常 NullPointerException */ public class ArrayException { public static void main(String[] args) { //1.数组角标越界的异常 ArrayIndexOutOfBoundsException int[] arr=new int[]{1,2,3,4}; for(int i=0;i<=arr.length;i++) {//显然i取不到arr.length System.out.println(arr[i]); } //2.空指针异常 NullPointerException,常见于二维数组,动态初始化的第二种方式 //常见情况: int[][] num=new int[10][]; System.out.print(num[0]);//编译通过,不是空指针 System.out.print(num[0][0]);//空指针。见杨辉三角例题,外层循环第一句就是设定外层元素个数 //其他情况 int[] arr1=new int[] {1,2,3}; arr1=null; System.out.println(arr1[0]); } }
标签:ArrayIndexOutOfBoundsException,Exception,Java,--,day4,int,数组,异常 From: https://www.cnblogs.com/NGZS/p/16858559.html