...

/

Implementing Polymorphism Using Inheritance

Implementing Polymorphism Using Inheritance

Implement polymorphism using the OOP concepts.

We can add new data and methods to a class through inheritance. But what if we want our derived class to inherit a method from the base class and have a different implementation for it? That is when polymorphism, a fundamental concept in the OOP paradigm, comes into play.

Example

Consider the example of a Shape class, which is the base class while many shapes like Rectangle and Circle extending from the base ...

Rectangle and circle inherit from shape