在Java中,super
是一个关键字,用于引用父类的成员(字段、方法、构造方法)。主要有两种用法:
1. 调用父类的构造方法:在子类的构造方法中,使用super()
调用父类的构造方法。如果子类没有显式地调用父类的构造方法,Java编译器会隐式地调用父类的无参构造方法。如果父类没有无参构造方法,而子类又没有显式地调用父类的其他构造方法,则会导致编译错误。
class Parent {Parent() {System.out.println("Parent class constructor");}
}class Child extends Parent {Child() {super(); // 调用父类的无参构造方法System.out.println("Child class constructor");}
}
2. 调用父类的成员:在子类中,可以使用super
关键字来调用父类中的字段或方法。如果子类和父类中存在同名的字段或方法,可以使用super
关键字来明确指定调用父类中的字段或方法。
class Parent {int num = 10;void display() {System.out.println("Parent class method");}
}class Child extends Parent {int num = 20;void display() {super.display(); // 调用父类的方法System.out.println("Child class method");}void accessParentField() {System.out.println(super.num); // 访问父类的字段}
}
在C++中,没有名为 super 的关键字,但是有一个类似的概念,即使用基类名来引用父类的成员。