Java中ArrayIndexOutOfBoundsException 异常报错的解决方案
作者:李三岁~
本文主要介绍了Java中ArrayIndexOutOfBoundsException 异常报错的解决方案,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
一、ArrayIndexOutOfBoundsException异常报错原因分析
ArrayIndexOutOfBoundsException 数组下标越界异常
异常报错信息案例:
案例1:
案例2:
异常错误描述:
错误原因:数组下标越界异常;超出了数组下标的取值范围,数组下标的取值范围是 [0,arr.length-1],即 0 ~ 数组的长度-1,而上述的两个错误都是我们在访问数组元素时,超出了数组下标的取值返回。
ArrayDemo
案例1:
public class ArrayDemo { public static void main(String[] args) { int[] arr = new int[5]; arr[5] = 100; } }
ArrayDemo
案例2:
public class ArrayDemo { public static void main(String[] args) { int[] arr = new int[5]; for (int i = 0; i <= arr.length; i++) { System.out.println(arr[i]); } } }
上述为错误代码,项目结构见上述两张图片
二、ArrayIndexOutOfBoundsException解决方案
解决思路:这里,我们只需要检查我们在访问的数组元素,何时出现了数组下标超出了其取值范围并改正即可
案例1:
public class ArrayDemo { public static void main(String[] args) { int[] arr = new int[5]; arr[4] = 100; } }
案例2:
第一种方式:
public class ArrayDemo { public static void main(String[] args) { int[] arr = new int[5]; for (int i = 0; i < arr.length; i++) { System.out.println(arr[i]); } } }
第二种方式:
public class ArrayDemo { public static void main(String[] args) { int[] arr = new int[5]; for (int i = 0; i <= arr.length-1; i++) { System.out.println(arr[i]); } } }
到此这篇关于Java中ArrayIndexOutOfBoundsException 异常报错的解决方案的文章就介绍到这了,更多相关Java ArrayIndexOutOfBoundsException 内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!