-
Notifications
You must be signed in to change notification settings - Fork 549
/
Copy path11_homework_03_answer.cpp
66 lines (52 loc) · 1.03 KB
/
11_homework_03_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
56
57
58
59
60
61
62
63
64
65
66
#include <bits/stdc++.h>
using namespace std;
class A {
public:
A(string str) { cout<<"Constructor "<<str<<"\n"; }
~A() { cout<<"~A\n"; }
};
class B {
A a1;
public:
B() : a1(A("Most")) {
cout<<"Constructor B"<<"\n";
}
~B() { cout<<"~B\n"; }
};
class C : public B{
A a2;
public:
C() : a2(A("Ali")) {
cout<<"Constructor C"<<"\n";
}
~C() { cout<<"~C\n"; }
};
int main() {
C c1;
C* c2;
return 0;
}
/*
This is an exmple for both inheritance and composition
Constructor Most
Constructor B
Constructor Ali
Constructor C
~C
~A
~B
~A
Note, this pointer is not created = no output
Also note: Destroctor doesn't mean destroying
Construction:
Derived allocated
Base allocated
Base constructor called
Derived constructor called
Destruction:
Derived destructor called
Base destructor called
Base deallocated
Derived deallocated
Src: https://stackoverflow.com/questions/654428/what-is-the-order-in-which-the-destructors-and-the-constructors-are-called-in-c
*/