Java Super keyword
Super is a keyword in Java that refers to the immediate superclass object. Use of super keyword in Java: super can be used to call the immediate super class constructor (constructor chaining). super can be used to call an immediate superclass method on a subclass object from a subclass method. super can be used to … Read more