Java中的数组索引越界异常
Java支持将数组作为数据结构创建和操作。数组的索引是一个整数值,其值在区间 [0, n-1] 内,其中 n 是数组的大小。如果请求大于或等于数组大小的负数或索引,则Java将引发 ArrayIndexOutOfBounds 异常。这与 C/C++ 不同,在 C/C++ 中没有完成边界检查的索引。
ArrayIndexOutOfBoundsException是仅在运行时引发的运行时异常。 Java编译器在程序编译期间不会检查此错误。
Java
// A Common cause index out of bound
public class NewClass2 {
public static void main(String[] args)
{
int ar[] = { 1, 2, 3, 4, 5 };
for (int i = 0; i <= ar.length; i++)
System.out.println(ar[i]);
}
}
Java
// One more example with index out of bound
import java.util.ArrayList;
public class NewClass2
{
public static void main(String[] args)
{
ArrayList lis = new ArrayList<>();
lis.add("My");
lis.add("Name");
System.out.println(lis.get(2));
}
}
Java
// Correct code for Example 1
public class NewClass2 {
public static void main(String[] args)
{
int ar[] = { 1, 2, 3, 4, 5 };
for (int i = 0; i < ar.length; i++)
System.out.println(ar[i]);
}
}
Java
// Handling exceptions using for-each loop
import java.io.*;
class GFG {
public static void main (String[] args) {
int arr[] = {1,2,3,4,5};
for(int num : arr){
System.out.println(num);
}
}
}
Java
// Handling exception using try catch block
public class NewClass2 {
public static void main(String[] args)
{
int ar[] = { 1, 2, 3, 4, 5 };
try {
for (int i = 0; i <= ar.length; i++)
System.out.print(ar[i]+" ");
}
catch (Exception e) {
System.out.println("\nException caught");
}
}
}
预期输出:
1
2
3
4
5
原始输出:
运行时错误引发异常:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 5
at NewClass2.main(NewClass2.java:5)
这里如果你仔细看,数组的大小是 5。因此,当使用 for 循环访问它的元素时,最大索引值可以是 4,但在我们的程序中,它一直到 5,因此异常。
让我们看另一个使用 ArrayList 的示例:
Java
// One more example with index out of bound
import java.util.ArrayList;
public class NewClass2
{
public static void main(String[] args)
{
ArrayList lis = new ArrayList<>();
lis.add("My");
lis.add("Name");
System.out.println(lis.get(2));
}
}
这里的运行时错误比上一次提供更多信息 -
Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
at java.util.ArrayList.rangeCheck(ArrayList.java:653)
at java.util.ArrayList.get(ArrayList.java:429)
at NewClass2.main(NewClass2.java:7)
让我们稍微详细了解一下:
- 这里的索引定义了我们试图访问的索引。
- 大小为我们提供了有关列表大小的信息。
- 由于大小为 2,我们可以访问的最后一个索引是 (2-1)=1,因此例外。
访问数组的正确方法是:
for (int i=0; i
正确的代码 -
Java
// Correct code for Example 1
public class NewClass2 {
public static void main(String[] args)
{
int ar[] = { 1, 2, 3, 4, 5 };
for (int i = 0; i < ar.length; i++)
System.out.println(ar[i]);
}
}
1
2
3
4
5
处理异常:
1.使用for-each循环:
这会在访问数组元素时自动处理索引。
句法:
for(int m : ar){
}
例子:
Java
// Handling exceptions using for-each loop
import java.io.*;
class GFG {
public static void main (String[] args) {
int arr[] = {1,2,3,4,5};
for(int num : arr){
System.out.println(num);
}
}
}
1
2
3
4
5
2. 使用Try-Catch :
考虑将您的代码包含在 try-catch 语句中并相应地处理异常。如前所述, Java不会让您访问无效索引,并且肯定会抛出 ArrayIndexOutOfBoundsException。但是,我们应该在 catch 语句的块内小心,因为如果我们没有适当地处理异常,我们可能会隐藏它,从而在您的应用程序中创建一个错误。
Java
// Handling exception using try catch block
public class NewClass2 {
public static void main(String[] args)
{
int ar[] = { 1, 2, 3, 4, 5 };
try {
for (int i = 0; i <= ar.length; i++)
System.out.print(ar[i]+" ");
}
catch (Exception e) {
System.out.println("\nException caught");
}
}
}
1 2 3 4 5
Exception caught
在上面的示例中,您可以看到直到索引 4(值 5),循环打印了所有值,但是当我们尝试访问 arr[5] 时,程序抛出了一个异常,该异常被 catch 捕获块,并打印“异常捕获”语句。
探索测验问题。