Function Overriding in C++

Function Overriding in C++

Function Overriding in C++

 

Function overriding in C++ is termed as the redefinition of base class function in its derived class with the same signature i.e. return type and parameters. If derived class defines same function as defined in its base class, it is known as function overriding in C++. It is used to achieve runtime polymorphism.

 

SYNTAX :

public class baseClass {
  access_modifier:
    //overridden function
    return_type functionName(){ }
  };
}

public class derivedClass : public baseClass {
  access_modifier:
    //overriding function
      return_type functionName(){ }
  };
}

 

 

CODE :

//C++ program to demonstrate function overriding
#include <iostream>
using namespace std;

class baseClass {
public:
void print() {
cout << “The Base Function.” << endl;
}
};

class derivedClass : public baseClass {
public:
void print() {
cout << “The Derived Function.” << endl;
}
};

//Driver code
int main() {

derivedClass d1;
d1.print();

return 0;
}

 

OUTPUT:

The Derived Function



 

Topics Covered :

  • c++ function overriding
  • function overriding in c++
  • c++ function overriding exmple
  • c++ program of function overriding
  • function overriding in c++ program
  • c++ function overriding with example
  • function overriding in c++ programming

 

 


 

 


 

Thanks for reading this blog. Hope you get satisfied with the blog and definitely this blog must have valued your time and effort of reading.

Take a time to connect our other digital creations such as Instagram , Facebook and Youtube.

 

🧑‍💻🧑‍💻 Social Media Links of Tech DCode :

👉🏻 YouTube : https://www.youtube.com/channel/UCjJnEdeugftBwQ3yMuD4B_A
👉🏻 Instagram : https://www.instagram.com/thetechdcode/
👉🏻 Facebook Page : https://www.facebook.com/thetechdcode
👉🏻 Twitter : https://twitter.com/thetechdcode
👉🏻 Telegram Channel : https://t.me/thetechdcode
👉🏻 Tech DCode Linktree : https://linktr.ee/thetechdcode
👉🏻 My Personal Handles : https://linktr.ee/virtualshivamin

🧑‍💻🧑‍💻 Social Media Links of SHIVAM SINGH (OWNER) :

👉🏻 Instagram : https://www.instagram.com/virtualshivamin/
👉🏻 Facebook Page : https://www.facebook.com/virtualshivamin/
👉🏻 Twitter : https://twitter.com/virtualshivamin/
👉🏻 Personal Linktree : https://linktr.ee/virtualshivamin 

 

Leave a Reply

Your email address will not be published. Required fields are marked *