-
Notifications
You must be signed in to change notification settings - Fork 0
/
5VirtualDtorlPublicDerived1Derived2DerivedBoth-BaseAmbigvious.cpp
117 lines (87 loc) · 1.89 KB
/
5VirtualDtorlPublicDerived1Derived2DerivedBoth-BaseAmbigvious.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/******************************************************************************
Example of Base, Derived : public Base, no virtual
*******************************************************************************/
/******************************************************************************
Results:
main.cpp: In function ‘int main()’:
main.cpp:105:19: error: ‘Base’ is an ambiguous base of ‘DerivedBoth’
Base *b = new DerivedBoth;
*******************************************************************************/
#include <iostream>
using namespace std;
class Base
{
public:
int m_i;
Base()
{
cout<<"Base Ctor"<<endl;
}
virtual ~Base()
{
cout<<"Base Dtor"<<endl;
}
virtual void printMe()
{
cout<<"Hi, Base"<<endl;
}
};
class Derived1 : public Base
{
public:
int m_i;
Derived1()
{
cout<<"Derived1 Ctor"<<endl;
}
~Derived1()
{
cout<<"Derived1 Dtor"<<endl;
}
void printMe()
{
cout<<"Hi, Derived1"<<endl;
}
};
class Derived2 : public Base
{
public:
int m_i;
Derived2()
{
cout<<"Derived2 Ctor"<<endl;
}
~Derived2()
{
cout<<"Derived2 Dtor"<<endl;
}
void printMe()
{
cout<<"Hi, Derived2"<<endl;
}
};
class DerivedBoth : public Derived1, public Derived2
{
public:
int m_i;
DerivedBoth()
{
cout<<"DerivedBoth Ctor"<<endl;
}
~DerivedBoth()
{
cout<<"DerivedBoth Dtor"<<endl;
}
void printMe()
{
cout<<"Hi, DerivedBoth"<<endl;
}
};
int main()
{
cout<<"Start:"<<endl;
Base *b = new DerivedBoth;
b->printMe();
delete b;
return 0;
}