-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02-InitDifferences.cpp
69 lines (62 loc) · 1.31 KB
/
02-InitDifferences.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
struct S
{
int i;
double d;
};
class C
{
public:
C();
private:
int m_i;
S m_s;
static const int arrSize = 10;
long m_numbers[arrSize];
std::map<std::string, int> m_map;
};
C::C() : m_i(42)
{
m_s.i = 7;
m_s.d = 3.14;
// Or: S s = {7, 3.14}; m_s = s;
for (long i = 0; i < arrSize; ++i)
{
m_numbers[i] = i;
}
// vs. non-member array init:
// long numbers[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
m_map.insert(std::make_pair("a", 1));
m_map.insert(std::make_pair("b", 2));
m_map.insert(std::make_pair("c", 3));
m_map.insert(std::make_pair("d", 4));
m_map.insert(std::make_pair("e", 5));
}
// The modern implementation with brace initialization
C::C(): m_i(42),
m_s{7, 3.14},
m_numbers{0, 1, 2, 3, 4, 5, 6, 7, 8, 9},
m_map{
{"a", 1},
{"b", 2},
{"c", 3},
{"d", 4},
{"e", 5},
}
{
}
// Even better implementation with in-class init
class C
{
private:
int m_i = 42;
S m_s{7, 3.14};
static const int arrSize = 10;
long m_numbers[arrSize] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
std::map<std::string, int> m_map{
{"a", 1},
{"b", 2},
{"c", 3},
{"d", 4},
{"e", 5},
};
};