オーバーライドされたメソッドのスーパークラス バージョンを呼び出す場合は、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のスーパーキーワードの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。