changes: 优化文档导航

This commit is contained in:
Changkun Ou
2018-04-11 08:02:11 +02:00
parent 8e9fc54724
commit 2038e5fe67
13 changed files with 35 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
# 第 5 章 标准库的扩充:引用计数与智能指针
# 第 5 章 标准库指针
> 内容修订中
@@ -176,6 +176,8 @@ int main() {
智能指针这种技术并不新奇在很多语言中都是一种常见的技术C++1x 将这项技术引进,在一定程度上消除了 `new`/`delete` 的滥用,是一种更加成熟的编程范式。
[返回目录](./toc.md) | [上一章](./04-containers.md) | [下一章 标准库:正则表达式](./06-regex.md)
## 进一步阅读的参考资料
1. [stackoverflow 上关于『C++11为什么没有 make_unique』的讨论](http://stackoverflow.com/questions/12580432/why-does-c11-have-make-shared-but-not-make-unique)