This commit is contained in:
y1yang0 2023-01-31 03:01:36 +00:00
parent 0ced53853b
commit 43482d9312
4 changed files with 4 additions and 4 deletions

View File

@ -156,7 +156,7 @@ public:
};
std::unique_ptr<Base> upb = //创建基类指针指向派生类对象
std::make_unique<Derived>(); //关于stdmake_unique
std::make_unique<Derived>(); //关于std::make_unique
… //请参见Item21

View File

@ -1778,7 +1778,7 @@ public:
};
std::unique_ptr<Base> upb = //创建基类指针指向派生类对象
std::make_unique<Derived>(); //关于stdmake_unique
std::make_unique<Derived>(); //关于std::make_unique
… //请参见Item21

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long