You are on page 1of 1

Super keyword in java is a reference variable that is used to refer parent class

object. Super is an implicit keyword create by JVM and supply each and every java
program for performing important role in three places.

Super keyword At Variable Level


Super keyword At Method Level
Super keyword At Constructor Level
Usage of Java super Keyword
super can be used to refer immediate parent class instance variable.
super can be used to invoke immediate parent class method.
super() can be used to invoke immediate parent class constructor.

You might also like