Skip to content

Commit

Permalink
文件内容错误
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoubh committed May 4, 2023
1 parent 2f034e7 commit 34a69f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ std::vector<std::auto_ptr<int>> myvectors;

> boost 还有 scoped_ptr,C++11 并没有全部照搬,而是选择了三个最实用的指针类型。在 C++11 中可以通过 std::unique_ptr 达到与 boost::scoped_ptr 一样的效果。
所有的智能指针类(包括 std::unique_ptr)均包含于头文件 **** 中。
所有的智能指针类(包括 std::unique_ptr)均包含于头文件 **<memory>** 中。

> 正因为存在上述设计上的缺陷,在 C++11及后续语言规范中 std::auto_ptr 已经被废弃,你的代码不应该再使用它。
Expand Down

0 comments on commit 34a69f7

Please sign in to comment.