呼叫重寫方法的超類別版本時,使用 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中文網其他相關文章!