下面 Java 代码的运行结果为()
public class Test {
public static void main(String[] args) {
int[] arr = {1, 2, 3, 4};
try {
System.out.println(arr[5]);
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println("catch");
try {
throw new MyException("exception");
} catch (MyException me) {
System.out.println(me.getMessage());
}
} finally {
System.out.println("finally");
}
}
}
