-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathc.cpp
73 lines (62 loc) · 972 Bytes
/
c.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
topic:- multiple direct inheritance.
*/
#include <iostream>
using namespace std;
class Base1
{
protected:
int x;
public:
Base1(int x)
{
this->x = x;
cout << "Base1 constructor\n";
}
~Base1()
{
cout << "Base1 destructor\n";
}
};
class Base2
{
protected:
int y;
public:
Base2(int y)
{
this->y = y;
cout << "Base2 constructor\n";
}
~Base2()
{
cout << "Base2 destructor\n";
}
};
class Derived : protected Base1, public Base2
{
int z;
public:
Derived(int, int, int);
void show();
~Derived();
};
Derived::Derived(int x, int y, int z) : Base1(x), Base2(y)
{
this->z = z;
cout << "Derived constructor\n";
}
Derived::~Derived()
{
cout << "Derived destructor\n";
}
void Derived::show()
{
cout << "x:- " << x << "\ny:- " << y << "\nz:- " << z << "\n";
}
int main()
{
Derived derived(1, 2, 3);
derived.show();
return 0;
}