halisi7

一个专注技术的组织

0%

Java数组中的常见异常类型

Java数组中的常见异常类型:

1. 数组角标越界的异常:ArrayIndexOutOfBoundsExcetion
  1. 空指针异常:NullPointerException

Demo:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
public class ArrayExceptionTest {
public static void main(String[] args) {

//1. 数组角标越界的异常:ArrayIndexOutOfBoundsExcetion
int[] arr = new int[]{1,2,3,4,5};

// for(int i = 0;i <= arr.length;i++){
// System.out.println(arr[i]);
// }

// System.out.println(arr[-2]);

// System.out.println("hello");

//2.2. 空指针异常:NullPointerException
//情况一:
// int[] arr1 = new int[]{1,2,3};
// arr1 = null;
// System.out.println(arr1[0]);

//情况二:
// int[][] arr2 = new int[4][];
// System.out.println(arr2[0][0]);

//情况三:
String[] arr3 = new String[]{"AA","BB","CC"};
arr3[0] = null;
System.out.println(arr3[0].toString());
}
}

总结:

  • 在ArrayIndexOutOfBoundsExcetion中报错会显示越出的角标值。
  • 若数组赋值为null也会报NullPointerException这个错误。

  • 数组的合理范围是:[0,arr.length-1]。

打赏一下作者~ ฅ( ̳• ◡ • ̳)ฅ