재정의된 메서드의 슈퍼클래스 버전을 호출할 때 super 키워드를 사용하세요.
Live Demo
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의 슈퍼 키워드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!