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

Abstraction

Abstraction is the concept of hiding the internal details of a functionality and providing a simple representation for the same. So complex functionality can be made available to the outside world in a simple way. We can see below that internal details of a car is abstracted and its functionality is made available to public […]

Share this article on
< Previous Next >