From 34a69f75b372a541a3344c9bc82641cb32d25f55 Mon Sep 17 00:00:00 2001 From: zhoubh Date: Thu, 4 May 2023 15:08:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=86=85=E5=AE=B9=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\232\204\346\231\272\350\203\275\346\214\207\351\222\210.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/articles/C++\345\277\205\347\237\245\345\277\205\344\274\232\347\232\204\347\237\245\350\257\206\347\202\271/\350\257\246\350\247\243C++11\344\270\255\347\232\204\346\231\272\350\203\275\346\214\207\351\222\210.md" "b/articles/C++\345\277\205\347\237\245\345\277\205\344\274\232\347\232\204\347\237\245\350\257\206\347\202\271/\350\257\246\350\247\243C++11\344\270\255\347\232\204\346\231\272\350\203\275\346\214\207\351\222\210.md" index 2dba34f..e7436a3 100644 --- "a/articles/C++\345\277\205\347\237\245\345\277\205\344\274\232\347\232\204\347\237\245\350\257\206\347\202\271/\350\257\246\350\247\243C++11\344\270\255\347\232\204\346\231\272\350\203\275\346\214\207\351\222\210.md" +++ "b/articles/C++\345\277\205\347\237\245\345\277\205\344\274\232\347\232\204\347\237\245\350\257\206\347\202\271/\350\257\246\350\247\243C++11\344\270\255\347\232\204\346\231\272\350\203\275\346\214\207\351\222\210.md" @@ -107,7 +107,7 @@ std::vector> myvectors; > boost 还有 scoped_ptr,C++11 并没有全部照搬,而是选择了三个最实用的指针类型。在 C++11 中可以通过 std::unique_ptr 达到与 boost::scoped_ptr 一样的效果。 -所有的智能指针类(包括 std::unique_ptr)均包含于头文件 **** 中。 +所有的智能指针类(包括 std::unique_ptr)均包含于头文件 **** 中。 > 正因为存在上述设计上的缺陷,在 C++11及后续语言规范中 std::auto_ptr 已经被废弃,你的代码不应该再使用它。