Merge pull request #182 from 2017zhangyuxuan/patch-1
Mod: add "_len" initiation
This commit is contained in:
commit
5d23c9dede
@ -42,7 +42,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// copy ctor
|
// copy ctor
|
||||||
MyStringNoMove(const MyStringNoMove &str) {
|
MyStringNoMove(const MyStringNoMove &str) : _len(str._len) {
|
||||||
++CCtor;
|
++CCtor;
|
||||||
_init_data(str._data);
|
_init_data(str._data);
|
||||||
}
|
}
|
||||||
@ -118,7 +118,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// copy ctor
|
// copy ctor
|
||||||
MyString(const MyString &str) {
|
MyString(const MyString &str) : _len(str._len) {
|
||||||
++CCtor;
|
++CCtor;
|
||||||
_init_data(str._data);
|
_init_data(str._data);
|
||||||
}
|
}
|
||||||
@ -279,4 +279,4 @@ int main() {
|
|||||||
// test_moveable(multiset<MyString>(), multiset<MyStringNoMove>(), value);
|
// test_moveable(multiset<MyString>(), multiset<MyStringNoMove>(), value);
|
||||||
// test_moveable(unordered_multiset<MyString>(), unordered_multiset<MyStringNoMove>(), value);
|
// test_moveable(unordered_multiset<MyString>(), unordered_multiset<MyStringNoMove>(), value);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user