调用重写方法的超类版本时,使用 super 关键字。
现场演示
class Animal { public void move() { System.out.println("Animals can move"); } } class Dog extends Animal { public void move() { super.move(); // invokes the super class method System.out.println("Dogs can walk and run"); } } public class TestDog { public static void main(String args[]) { Animal b = new Dog(); // Animal reference but Dog object b.move(); // runs the method in Dog class } }
这将产生以下结果 -
Animals can move Dogs can walk and run
以上是Java中的super关键字的详细内容。更多信息请关注PHP中文网其他相关文章!