From e76957a7e3e9d8521bd892abeea292610de9170f Mon Sep 17 00:00:00 2001 From: BestAnimationLover <43541108+2017zhangyuxuan@users.noreply.github.com> Date: Mon, 29 Nov 2021 09:44:47 +0800 Subject: [PATCH] Mod: add "_len" initiation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在拷贝构造函数中,添加长度的初始化列表 --- c++2.0/c++11/move.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c++2.0/c++11/move.cpp b/c++2.0/c++11/move.cpp index 7e9ce35..e1fa253 100644 --- a/c++2.0/c++11/move.cpp +++ b/c++2.0/c++11/move.cpp @@ -42,7 +42,7 @@ public: } // copy ctor - MyStringNoMove(const MyStringNoMove &str) { + MyStringNoMove(const MyStringNoMove &str) : _len(str._len) { ++CCtor; _init_data(str._data); } @@ -118,7 +118,7 @@ public: } // copy ctor - MyString(const MyString &str) { + MyString(const MyString &str) : _len(str._len) { ++CCtor; _init_data(str._data); } @@ -279,4 +279,4 @@ int main() { // test_moveable(multiset(), multiset(), value); // test_moveable(unordered_multiset(), unordered_multiset(), value); return 0; -} \ No newline at end of file +}