gpt4 book ai didi

java - 继承中的异常声明?

转载 作者:行者123 更新时间:2023-12-01 22:58:32 27 4
gpt4 key购买 nike

package com.rnd.core.java;


import java.io.IOException;
public class TestExceptionInheritance {

public void checkExcpetions () throws ArrayIndexOutOfBoundsException{
System.out.println("Inside TestExceptionInheritance ParentClass");
throw new ArrayIndexOutOfBoundsException();

}

}

package com.rnd.core.java;


import javax.sound.midi.MidiUnavailableException;
public class TestExceptionInheritance2 extends TestExceptionInheritance {

public void checkException () throws MidiUnavailableException {
System.out.println("Hello");
throw new MidiUnavailableException();
}


@Override
public void checkExcpetions() throws StringIndexOutOfBoundsException {
// TODO Auto-generated method stub
//super.checkExcpetions();
System.out.println("HI");
}


public static void main(String[] args) throws Exception {
TestExceptionInheritance obj = new TestExceptionInheritance2();
obj.checkExcpetions();

}
}

我在子类中重写了父类的 checkException 方法,但在这里抛出了不同的异常。

我想了解为什么编译器允许我抛出一个完全不同的异常;虽然我知道方法版本将根据引用类型决定。

--------------------编辑1-------------------------- -

我在重写的方法上添加了 @override 表示法。重写方法允许我抛出 StringIndexOutOfBoundExceptionRunTimeException 以及 ArrayIndexOutOfBoundException,但不能抛出任何其他异常,例如 Exception

根据Exception类层次结构,StringIndexOutOfBoundExceptionArrayIndexOutOfBoundException都是IndexOutOfBoundException的子类。

编译器如何以及为何允许我抛出 StringIndexOutOfBoundException,因为 ArrayIndexOutOfBoundException 永远不会被 StringIndexOutOfBoundException 捕获。

感谢您的帮助。

最佳答案

真正简单的答案是你并没有超越你所认为的自己。父类声明一个函数 public void checkExcpetions () 并且您有一个函数 public void checkException ()。这是两个不同的函数,这就是为什么没有编译器错误

使用@Override标签是让编译器检查您是否覆盖了您认为的内容的一种方法。在这种情况下,如果您使用该标记,则会出现错误,因为您没有重写父方法

关于java - 继承中的异常声明?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23701446/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com