-
Notifications
You must be signed in to change notification settings - Fork 549
/
Copy path07_homework_02_answer.cpp
55 lines (39 loc) · 1003 Bytes
/
07_homework_02_answer.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
#include <bits/stdc++.h>
using namespace std;
class Employee {
private:
string name;
public:
Employee(string name) :
name(name) {
cout<<"Constructor: "<<name<<"\n";
}
~Employee() {
cout<<"Destructor: "<<name<<"\n";
}
};
int main() {
static Employee belal("Belal");
Employee most("Mostafa");
if (true)
Employee("Mona");
static Employee Asmaa("Asmaa");
return 0;
}
/*
Constructor: Belal
Constructor: Mostafa
Constructor: Mona
Destructor: Mona
Constructor: Asmaa
Destructor: Mostafa
Destructor: Asmaa
Destructor: Belal
Constructor's call are the easy part.
For destructor, Think in the object's life time
- Static object ends ONLY with the end of the program.
- So every static member ends only after complete end of program life time
- If there are more than static, destruction in reverse order
- For local objects, once its scope is done
- Notice mona's scope ends after the if, but most ends after return 0
*/