-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstructorIn_derived_class.cpp
48 lines (44 loc) · 1.11 KB
/
ConstructorIn_derived_class.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include<iostream>
using namespace std;
class Base1{
int data;
public:
Base1(int i){
data = i;
cout<<"Base1 class constructor called"<<endl;
}
void printDataBase1(){
cout<<"The value of data is: "<<data<<endl;
}
};
class Base2{
int data;
public:
Base2 (int i){
data = i;
cout<<"Base2 class constructor called"<<endl;
}
void printDataBase2(){
cout<<"The value of data is: "<<data<<endl;
}
};
class Derived : public Base1, public Base2{
int derived1, derived2;
public:
Derived(int a, int b, int c, int d): Base1(a), Base2(b){
derived1 = c;
derived2 = d;
cout<<"Derived class constructor called"<<endl;
}
void printDataDerived(){
cout<<"The value of data is: "<<derived1<<endl;
cout<<"The value of data is: "<<derived2<<endl;
}
};
int main() {
Derived Shahid (1,2,3,4);
Shahid.printDataBase1();
Shahid.printDataBase2();
Shahid.printDataDerived();
return 0;
}