JAVA常见运行时异常
常见运行时异常
1.InputMisMatchException 输入类型不匹配
input.nextInt();输入一个整数,输了一个字母a
2.ArrayIndexOutOfBoundsException 数组索引越界
静态初始化 int[] array = {10,20};
array[2] 索引超出边界
3.NegativeArraySizeException 数组长度不合法(长度出现负数)
动态初始化 int[] array = new int[-2];
4.NullPointerException 空指针异常
引用为null 还拿来使用就不行
int[] array = null;
array[0] = 10;//空元素再拿来用
最容易找,也是最难找的。