-
Notifications
You must be signed in to change notification settings - Fork 160
/
inheritance_and_constructors.cpp
70 lines (61 loc) · 1.53 KB
/
inheritance_and_constructors.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
/*
# Inheritance and constructors.
*/
#include "common.hpp"
int main() {
/*
If no base constructor is called on the initialization list,
the default constructor is called for the base, before the derived.
*/
{
class Base {
public:
Base() {
callStack.push_back("Base()");
}
};
class Derived : public Base {
public:
Derived() {
callStack.push_back("Derived()");
}
};
Derived d;
assert(callStack.back() == "Derived()");
callStack.pop_back();
assert(callStack.back() == "Base()");
callStack.pop_back();
}
/*
If the base does not have a default constructor,
you *must* use the initializer list, or it won't compile.
*/
{
class Base {
public:
int i;
Base(int i) : i(i) {}
};
class Derived : public Base {
public:
/* Base(1) is mandatory here! */
Derived() : Base(1) {}
};
Derived d;
assert(d.i == 1);
}
/* Can only call one constructor of each base class. */
{
class Base {
public:
Base() {}
Base(int i) {}
};
class Derived : public Base {
public:
Derived() : Base() /*, Base(1) */ {
callStack.push_back("Derived()");
}
};
}
}