There is an implicit call to super() with no arguments for all classes that have a parent – which is every user defined class in Java – so calling it explicitly is usually not required . However, you may use the call to super() with arguments if the parent’s constructor takes parameters, and you wish to specify them.
Read moreWhat happens if we don’t use constructor for a class?
No-argument constructor If we don’t define a constructor in a class, then the compiler creates a default constructor(with no arguments) for the class .
Read moreWhat is the purpose of super ()?
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 more