Categories: C++

Method Overriding(Polymorphism)

What is Polymorphism?

The term “polymorphism” refers to having multiple forms. Polymorphism is defined as the ability of a message to be displayed in more than one form. There are two types of polymorphism:

  • Compile-time Polymorphism.
  • Runtime Polymorphism.
Method Overriding:

Function overriding is a concept in C++ that allows us to define a function with the same name and function signature (parameters and data types) in both the base and derived classes with a different function definition. It redefines a base class function within the derived class, which overrides the base class function. Run-time polymorphism is implemented through function overriding. As a result, it overrides the function during program execution.

Example:

#include <iostream>

using namespace std;

class parent_class
{
public:
    virtual void print()
    {
        cout << "\n print() method"

                " of BaseClass";
    }
};

class derived_class : public parent_class
{
public:
     // Function Overriding - new definition of
    // print method of base class
    void print()
   {
       cout << "\n print() method"

                " of the Derived Class";
   }
};
// Driver code
int main()
{
    derived_class obj;
    obj.print();
}
Output:
print() method of the Derived Class
Binding Function Calls to Class Objects:

Binding is the process of connecting the function call to the function body. When it is done before the program is executed, it is referred to as Early Binding, Static Binding, or Compile-time Binding.

Example:
#include <iostream>
using namespace std;
class parent
{        public:
  void func()
  {
   cout << "This is parent class" << endl;
  }
};
class Child : public parent
{         public:
  void func()
  {
   cout << "child class" << endl;
  }
};
int main()
{ parent *a;
 Child d;
 a= &d;
 a -> func();   //  early binding
 return 0;
}
Output:
This is parent class

The above example properly describes the function Call Binding using the Base class Pointer.

Note: also read about Order of Constructor Call in C++

Follow Me

If you like my post please follow me to read my latest post on programming and technology.

https://www.instagram.com/coderz.py/

https://www.facebook.com/coderz.py

Recent Posts

Select a Random Element from a Stream

You are given a stream of elements that is too large to fit into memory.…

1 day ago

Estimate π Using Monte Carlo Method

The formula for the area of a circle is given by πr². Use the Monte…

3 weeks ago

Longest Substring with K Distinct Characters

Given an integer k and a string s, write a function to determine the length…

3 weeks ago

Staircase Climbing Ways

There is a staircase with N steps, and you can ascend either 1 step or…

4 weeks ago

Autocomplete System Implementation

Build an autocomplete system that, given a query string s and a set of possible…

4 weeks ago

Job Scheduler Implementation

Design a job scheduler that accepts a function f and an integer n. The scheduler…

4 weeks ago