Super keyword

The super is a keyword in java which is used to refer parent class members and constructors. Why do we need super keyword? Whenever subclass and super class have same members then JVM gets ambiguity between such members(super class or subclass), so in order to resolve such ambiguity we can use super keyword in the […]

Share this article on