-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinheritance.cpp
executable file
·260 lines (191 loc) · 5.47 KB
/
inheritance.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
#include <iostream>
#include <string>
#include <array>
#include <typeinfo>
#include "Address.h"
using namespace std;
/*
3 kind of inheritance
- private
- public
- protected
*/
class Person
{
//static : common to all instances
static int lifeExpectancy;
//private method
int findAge() const; // const to be sure that age is not modified
// define public fields of instances
public:
string name;
int age;
void WhoAmI();
const static int Mr = 0;
const static int Ms = 1;
int civility;
static int getLifeExpectancy();
int getPersonLE();
int getCivility();
Address *address;
// constructor
Person();
Person(string name_, int civility_, int age_);
Person(string name_, int civility_, int age_, int no, string street, string city);
//destructor
virtual ~Person();
// constructor by copy
Person(const Person &p); // const to prevent any modification of the person in argument
// constructor by assignment of a copy. Override '=' operator
Person &operator=(const Person &SourcePerson);
};
void Person::WhoAmI()
{
string txtCivility;
switch (civility)
{
case Mr:
txtCivility = "mister";
break;
case Ms:
txtCivility = "Miss";
break;
default:
txtCivility = " nothing ";
}
cout << typeid(this).name() << ": my name is " << txtCivility << " " << name << " and I am " << findAge() << " y.o.\n";
if (address != nullptr)
cout << "address " << address->no << ", " << address->street << ", " << address->city << endl;
}
int Person::findAge() const
{
return age; // method is declared const, impossible to modify anything
}
int Person::getLifeExpectancy()
{
return lifeExpectancy;
}
int Person::getPersonLE()
{
if (civility == Person::Mr)
return Person::getLifeExpectancy() - 5;
return Person::getLifeExpectancy() + 5;
}
int Person::lifeExpectancy = 80;
int Person::getCivility()
{
return civility;
}
//constructors
Person::Person()
{
address = nullptr;
};
Person::Person(string name_, int civility_, int age_) : name(name_), civility(civility_), age(age_)
{
address = nullptr;
}
Person::Person(string name_, int civility_, int age_, int no, string street, string city) : Person(name_, civility_, age_)
{
address = new Address(no, street, city);
}
//destructor
Person::~Person()
{
cout << "----deleted " << this->name << endl;
if (address)
delete address;
}
//constructor by copy
Person::Person(const Person &pers) : age(pers.age), name(pers.name), civility(pers.civility)
{
cout << " ++ constructor by copy " << endl;
// new address with same infos
auto *a = pers.address;
address = new Address(a->no, (a->street) + " xXx ", a->city);
}
Person &Person::operator=(const Person &p)
{
cout << " $$ $$ $$ constructor by copy assignment \n";
name = p.name;
civility = p.civility;
age = p.age;
address = new Address(p.address->no, p.address->street, p.address->city);
return *this;
}
class Employee : public Person
{
//private fields
int id;
//public fields & methods
public:
string service;
// constructor
Employee(const string &name, int civility, int age, int id_, const string &service_ = "")
: Person(name, civility, age), id(id_), service(service_)
{
/*
this -> id = id;
this -> service = service;
*/
//or use a list of values
}
};
/*
* constructor by copy
* Person p2(p1);
*
* constructor of assignment by copy
* Person p2
* p2 = p1;
*
*/
int main()
{
string st2 = " Baker st";
string ct2 = " London ";
Person *p3 = new Person("Ann Lis", Person::Ms, 35);
p3->address = new Address(1, st2, ct2);
p3->WhoAmI();
Person p8(*p3);
p8.WhoAmI();
Person p9 = Person("james bond", Person::Mr, 45, 33, "downing st", "Oxford");
p9.WhoAmI();
Person p10;
p10 = p9; // operator overloaded !!!!!!
p10.WhoAmI();
Employee emp("Steve J", Person::Mr, 45, 12345, "Apple");
emp.WhoAmI();
auto displayPersonName = [](Person &p) {
cout << p.name << endl;
};
displayPersonName(emp);
//possible to put an employee into a person
Person &pers = emp;
//impossible to do the opposite
//Employee &emp2 = pers; // non const lvalue cannot bind to a value of unrelated type
// 1st test : put in Employee the Person that contains an employee
Employee &e = static_cast<Employee &>(pers);
cout << "employe e service: " << e.service << endl;
Employee &e2 = static_cast<Employee &>(p10);
// cout << "employe e2 service: "<< e2.service <<endl; // does not work, no service attribute
//Using dynamic cast, so that casting takes place at runtime and not compilation!!!
//Error can be caught
// dynamic casting - > object must have at least a virtual method
Employee &e3 = dynamic_cast<Employee &>(pers); // person must be polymorphic (have virtual method)
cout << "employe e3 service: " << e3.service << endl;
try
{
Employee &e4 = dynamic_cast<Employee &>(p10);
cout << "employe e4 service: " << e4.service << endl; // does not work, no service attribute
}
catch (exception &e)
{
cout << "dynamic cast failed :" << e.what() << endl;
}
// dynamic cast with pointer
Employee *pe = dynamic_cast<Employee *>(&pers);
cout << "pe service " << pe->service << endl;
cout << "\n\n\n end of the program" << endl;
return 0;
}