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:
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.
#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();
}
print() method of the Derived Class
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.
#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;
}
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++
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
Staying up to the mark is what defines me. Hi all! I’m Rabecca Fatima a keen learner, great enthusiast, ready to take new challenges as stepping stones towards flying colors.
You are given a stream of elements that is too large to fit into memory.…
The formula for the area of a circle is given by πr². Use the Monte…
Given an integer k and a string s, write a function to determine the length…
There is a staircase with N steps, and you can ascend either 1 step or…
Build an autocomplete system that, given a query string s and a set of possible…
Design a job scheduler that accepts a function f and an integer n. The scheduler…