For instance,
#include <iostream>
using namespace std;
// This is Parent class
class Base
{
public:
void print()
{
cout << "Parent Class print function" << endl;
}
};
// This is Child class
class Subclass : public Base
{
public:
void print()
{
cout << "Child Class print function" << endl;
}
};
int main()
{
Base *base_object;
Subclass sub_object;
base_object = &sub_object;
// also as we are dealing with pointers instead of . we need to use ->
base_object->print();
return 0;
}
Parent Class print function
Downcasting is the inverse of Upcasting, in which we convert a reference or pointer from a Super class to a reference or pointer from a derived class. We’ll learn more about Downcasting later.
Static member functions behave similarly to non-static member functions:
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.
Problem Statement: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. Example…
Given an integer A. Compute and return the square root of A. If A is…
Given a zero-based permutation nums (0-indexed), build an array ans of the same length where…
A heap is a specialized tree-based data structure that satisfies the heap property. It is…
What is the Lowest Common Ancestor? In a tree, the lowest common ancestor (LCA) of…