-
Notifications
You must be signed in to change notification settings - Fork 8.5k
/
move.cpp
282 lines (243 loc) · 7.5 KB
/
move.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
//
// Created by light on 19-11-4.
//
#include <iostream>
#include <cstring>
#include <vector>
#include <list>
#include <typeinfo>
#include <deque>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
using namespace std;
class MyStringNoMove {
public:
static size_t DCtor; // default-ctor
static size_t Ctor; // ctor
static size_t CCtor; // copy-ctor
static size_t CAsgn; // copy-assignment
static size_t MCtor; // move-ctor
static size_t MAsgn; // move-assignment
static size_t Dtor; // dtor
private:
char *_data;
size_t _len;
void _init_data(const char *s) {
_data = new char[_len];
memcpy(_data, s, _len);
_data[_len] = '\0';
};
public:
MyStringNoMove() : _data(NULL), _len(0) { ++DCtor; }
MyStringNoMove(const char *p) : _len(strlen(p)) {
++Ctor;
_init_data(p);
}
// copy ctor
MyStringNoMove(const MyStringNoMove &str) : _len(str._len) {
++CCtor;
_init_data(str._data);
}
// copy assignment
MyStringNoMove &operator=(const MyStringNoMove &str) {
++CAsgn;
if (this != &str) {
if (_data) delete _data;
_len = str._len;
_init_data(str._data);
} else {
}
return *this;
}
~MyStringNoMove() { // dtor 默认是noexcept
++Dtor;
if (_data)
delete _data;
}
bool
operator<(const MyStringNoMove &rhs) const {
return string(this->_data) < string(rhs._data);
}
bool
operator==(const MyStringNoMove &rhs) const {
return string(this->_data) == string(rhs._data);
}
char *get() const {
return _data;
}
};
size_t MyStringNoMove::DCtor = 0; // default-ctor
size_t MyStringNoMove::Ctor = 0; // ctor
size_t MyStringNoMove::CCtor = 0; // copy-ctor
size_t MyStringNoMove::CAsgn = 0; // copy-assignment
size_t MyStringNoMove::MAsgn = 0; // move-assignment
size_t MyStringNoMove::MCtor = 0; // move-ctor
size_t MyStringNoMove::Dtor = 0; // dtor
// move aware class
class MyString {
public:
static size_t DCtor; // default-ctor
static size_t Ctor; // ctor
static size_t CCtor; // copy-ctor
static size_t CAsgn; // copy-assignment
static size_t MCtor; // move-ctor
static size_t MAsgn; // move-assignment
static size_t Dtor; // dtor
private:
char *_data;
size_t _len;
void _init_data(const char *s) {
_data = new char[_len];
memcpy(_data, s, _len);
_data[_len] = '\0';
};
public:
MyString() : _data(NULL), _len(0) { ++DCtor; }
MyString(const char *p) : _len(strlen(p)) {
++Ctor;
_init_data(p);
}
// copy ctor
MyString(const MyString &str) : _len(str._len) {
++CCtor;
_init_data(str._data);
}
// move ctor
MyString(MyString &&str) noexcept: _data(str._data), _len(str._len) {
++MCtor;
str._len = 0;
str._data = NULL; // 重要
}
// copy assignment
MyString &operator=(const MyString &str) {
++CAsgn;
if (this != &str) {
if (_data) delete _data;
_len = str._len;
_init_data(str._data);
} else {
}
return *this;
}
// move assignment
MyString &operator=(MyString &&str) {
++MAsgn;
if (this != &str) {
if (_data) delete _data;
_data = str._data;
_len = str._len;
str._len = 0;
str._data = NULL;
} else {
}
return *this;
}
~MyString() { // dtor 默认是noexcept
++Dtor;
if (_data)
delete _data;
}
bool
operator<(const MyString &rhs) const {
return string(this->_data) < string(rhs._data);
}
bool
operator==(const MyString &rhs) const {
return string(this->_data) == string(rhs._data);
}
char *get() const {
return _data;
}
};
size_t MyString::DCtor = 0; // default-ctor
size_t MyString::Ctor = 0; // ctor
size_t MyString::CCtor = 0; // copy-ctor
size_t MyString::CAsgn = 0; // copy-assignment
size_t MyString::MAsgn = 0; // move-assignment
size_t MyString::MCtor = 0; // move-ctor
size_t MyString::Dtor = 0; // dtor
namespace std {
template<>
struct hash<MyStringNoMove> : public __hash_base<size_t, MyStringNoMove> {
size_t
operator()(const MyStringNoMove &s) const noexcept {
return hash<string>()(string(s.get()));
}
};
template<>
struct hash<MyString> : public __hash_base<size_t, MyString> {
size_t
operator()(const MyString &s) const noexcept {
return hash<string>()(string(s.get()));
}
};
}
template<typename T>
void output_static_data(const T &myStr) {
cout << typeid(myStr).name() << "==" << endl;
cout << "CCtor=" << T::CCtor
<< ",MCtor=" << T::MCtor
<< ",CAsgn=" << T::CAsgn
<< ",MAsgn=" << T::MAsgn
<< ",Dtor=" << T::Dtor
<< ",Ctor=" << T::Ctor
<< ",DCtor=" << T::DCtor
<< endl;
}
template<typename M, typename NM>
void test_moveable(M c1, NM c2, long &value) {
cout << "\n\ntest, with moveable elements" << endl;
typedef typename iterator_traits<typename M::iterator>::value_type V1type;
clock_t timeStart = clock();
for (long i = 0; i < value; i++) {
string buf = to_string(i);
auto ite = c1.end();
c1.insert(ite, V1type(buf.c_str()));
}
cout << "construction,milli-seconds:" << clock() - timeStart << endl;
cout << "size()=" << c1.size() << endl;
output_static_data(*(c1.begin()));
// 容器本身操作
timeStart = clock();
M c11(c1);
cout << "copy, milli-seconds: " << (clock() - timeStart) << endl;
timeStart = clock();
M c12(move(c1));
cout << "move copy, milli-seconds: " << (clock() - timeStart) << endl;
timeStart = clock();
c11.swap(c12);
cout << "swap, milli-seconds: " << (clock() - timeStart) << endl;
//測試 non-moveable
cout << "\n\ntest, with non-moveable elements" << endl;
typedef typename iterator_traits<typename NM::iterator>::value_type V2type;
timeStart = clock();
for (long i = 0; i < value; ++i) {
string buf = to_string(i);
auto ite = c2.end();
c2.insert(ite, V2type(buf.c_str()));
}
cout << "construction, milli-seconds : " << (clock() - timeStart) << endl;
cout << "size()= " << c2.size() << endl;
output_static_data(*(c2.begin()));
// 容器本身操作
timeStart = clock();
NM c21(c2);
cout << "copy, milli-seconds : " << (clock() - timeStart) << endl;
timeStart = clock();
NM c22(std::move(c2));
cout << "move copy, milli-seconds : " << (clock() - timeStart) << endl;
timeStart = clock();
c21.swap(c22);
cout << "swap, milli-seconds: " << (clock() - timeStart) << endl;
}
int main() {
long value = 3000; // vector 测试结果的MCtor与CCtor结果大于3000000,是因为vector的动态扩容,当容量不够的时候,会动态分配并进行拷贝。
// test_moveable(vector<MyString>(), vector<MyStringNoMove>(), value);
// test_moveable(list<MyString>(), list<MyStringNoMove>(), value);
// test_moveable(deque<MyString>(), deque<MyStringNoMove>(), value);
// test_moveable(multiset<MyString>(), multiset<MyStringNoMove>(), value);
// test_moveable(unordered_multiset<MyString>(), unordered_multiset<MyStringNoMove>(), value);
return 0;
}