The super() in Java is a reference variable that is used to refer parent class constructors. super can be used to call parent class’ variables and methods . super() can be used to call parent class’ constructors only.
Read moreWhy do we use super function?
The super() function is used to give access to methods and properties of a parent or sibling class . The super() function returns an object that represents the parent class.
Read more