编写一个类,在main方法中创建一个一维数组,使用try、catch、finally:
①在try块中,访问数组元素,使其产生ArrayIndexOutOfBoundsException异常。
②在catch块中,捕获此异常,并且打印“数组越界”信息。
③在finally块中,打印一条输出语句。
编写一个类,在main方法中创建一个一维数组,使用try、catch、finally:
①在try块中,访问数组元素,使其产生ArrayIndexOutOfBoundsException异常。
②在catch块中,捕获此异常,并且打印“数组越界”信息。
③在finally块中,打印一条输出语句。
如有帮助,请采纳。点击我回答右上角【采纳】按钮。
public class MyMain{
public static void main(String[] args) {
int []nums={1,2,3};
try {
System.out.println(nums[3]);
}catch (ArrayIndexOutOfBoundsException e){
System.out.println("数组越界");
}finally {
System.out.println("执行完毕!");
}
}
}