Example of Multiple Inheritance
Write a C++ Program to demonstrate an Example of Multiple Inheritance. Here’s a Simple C++ Program to demonstrate an Example of Multiple Inheritance in C++ Programming Language.
What are Inheritance in C++ ?
- Inheritance allows us to define a class in terms of another class, which makes it easier to create and maintain an application. This also provides an opportunity to reuse the code functionality and fast implementation time.
- When creating a class, instead of writing completely new data members and member functions, the programmer can designate that the new class should inherit the members of an existing class. This existing class is called the base class, and the new class is referred to as the derived class.
- The idea of inheritance implements the is a relationship. For example, mammal IS-A animal, dog IS-A mammal hence dog IS-A animal as well and so on.
Types of Inheritance : :
There are different types of inheritance : :
- Single Inheritance
- Multiple Inheritance
- Multilevel Inheritance
- Hierarchical Inheritance
- Hybrid (Virtual) Inheritance
Below is the source code for C++ Program to demonstrate an Example of Multiple Inheritance which is successfully compiled and run on Windows System to produce desired output as shown below :
SOURCE CODE : :
/* C++ Program to demonstrate an Example of Multiple Inheritance */ #include<iostream> using namespace std; class M { protected: int m; public : void get_M(int ); }; class N { protected: int n; public: void get_N(int); }; class P: public M, public N { public: void display(void); }; void M::get_M(int x) { m=x; } void N::get_N(int y) { n=y; } void P::display(void) { cout<<"\n\tm = "<<m<<endl; cout<<"\n\tn = "<<n<<endl; cout<<"\n\tm*n = "<<m*n<<endl; } int main() { P p; p.get_M(10); p.get_N(20); p.display(); return 0; }
OUTPUT : :
/* C++ Program to demonstrate an Example of Multiple Inheritance */ m = 10 n = 20 m*n = 200 Process returned 0
Above is the source code and output for C++ Program to demonstrate an Example of Multiple Inheritance which is successfully compiled and run on Windows System to produce desired output.
If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach upto you in the short interval.
Thanks for reading the post….