Java数组中的常见异常类型:
1. 数组角标越界的异常:ArrayIndexOutOfBoundsExcetion
- 空指针异常:NullPointerException
Demo:
1 | public class ArrayExceptionTest { |
总结:
- 在ArrayIndexOutOfBoundsExcetion中报错会显示越出的角标值。
若数组赋值为null也会报NullPointerException这个错误。
数组的合理范围是:[0,arr.length-1]。
1. 数组角标越界的异常:ArrayIndexOutOfBoundsExcetion
1 | public class ArrayExceptionTest { |
若数组赋值为null也会报NullPointerException这个错误。
数组的合理范围是:[0,arr.length-1]。
微信支付
支付宝