super keyword

In Java, super keyword is used to refer to immediate parent class of a class.

The keyword “super” came into the picture with the concept of Inheritance. It is majorly used in the following contexts:

1. With variables

2. With methods

3. With constructors

1. Super with variables: This scenario occurs when a derived class and base class has same data members. In that case there is a possibility of ambiguity for the JVM. We can understand it more clearly using below example:

Output:

Maximum Speed: 120 In the above example, both base class and subclass have a member maxSpeed. We could access maxSpeed of base class in sublcass using super keyword.

2. Super with methods: This is used when we want to call parent class method. So whenever a parent and child class has same named methods then to resolve ambiguity we use super keyword. Below example help you to understand the said usage of super keyword.

} Output:

This is student class This is person class

In the above example, we have seen that if we only call method message() then, the current class message() is invoked but with the use of super keyword, message() of superclass could also be invoked.

Important points:

1. Call to super() must be first statement in Derived(Student) Class constructor.

2. If a constructor does not explicitly invoke a superclass constructor, the Java compiler automatically inserts a call to the no-argument constructor of the superclass. If the superclass does not have a no-argument constructor, you will get a compile-time error. Object does have such a constructor, so if Object is the only superclass, there is no problem.

3. If a subclass constructor invokes a constructor of its superclass, either explicitly or implicitly, you might think that a whole chain of constructors called, all the way back to the constructor of Object. This, in fact, is the case. It is called constructor chaining.

Last updated