数组索引越界
package com.besttest.class1;
/*
数组的索引编号从0开始,一直到数组长度-1为止
如果访问数组元素的时候,索引编号并不存在,那么将会发生数组索引越界异常
ArrayIndexOutOfBoundsException
原因:索引编号写错了
解决:修改为存在的正确的索引编号
*/
public class Demo01Array {
public static void main(String[] args) {
int [] arr1= new int[3];
System.out.println(arr1); //地址值
System.out.println(arr1[0]);
System.out.println(arr1[1]);
System.out.println(arr1[2]);
System.out.println(arr1[3]); //越界
}
}
结果:
空指针异常
package com.besttest.class1;
/*
所有引用类型变量,都可以复制为null值,但是代表其中什么都没有
数组必须进行new初始化才能使用其中的元素
如果只是赋值了一个null,没有进行new创建,你们将会发生空指针异常 NullPointerException
原因:忘了new
解决:加上new
*/
public class Demo01Array {
public static void main(String[] args) {
int [] arr1;
System.out.println(arr1); //地址值
int [] arr2=null;
System.out.println(arr2);
}
}