商城首页欢迎来到中国正版软件门户

您的位置:首页 > 编程开发 >Java方法重写的条件是什么?

Java方法重写的条件是什么?

  发布于2023-04-28 阅读(0)

扫一扫,手机访问

发生条件

1、方法名相同

2、方法的参数列表相同(返回类型和数据类型)

3、方法的返回值相同

4、重写方法不能抛出新的异常或者比被重写方法声明的检查异常更广的检查异常。

但是可以抛出更少,更有限或者不抛出异常。

实例

  import java.io.*;
   public class Test {
       public static void main (String[] args) {
           Animal h = new Horse();
           try {
               h.eat();   
           }
           catch (Exception e) {
           }
       }
   }
 
   class Animal {
       public void eat() throws Exception{
           System.out.println ("Animal is eating.");
           throw new Exception();
       }
   }
   
   class Horse extends Animal{
       public void eat() throws IOException{
           System.out.println ("Horse is eating.");
           throw new IOException();
       }
   }
本文转载于:https://www.yisu.com/zixun/583616.html 如有侵犯,请联系admin@zhengruan.com删除

热门关注