方法的重写

1.什么是方法的重写?

方法的重写_第1张图片

2.方法重写的规则

方法的重写_第2张图片

3.super关键字的使用

方法的重写_第3张图片



4.方法重写的代码例子

public class Base
{
    void test(int i)
    {
        System.out.print(i);
    }
    void test(byte b)
    {
        System.out.print(b);
    }
}
public class TestOverriding extends Base
{
    void test(int i)
    {
        i++;
        System.out.println(i);
    }
      public static void main(String[]agrs)
    {
        Base b=new TestOverriding();
        b.test(0)
        b.test((byte)0)
    }
}

你可能感兴趣的:(方法的重写)