This commit is contained in:
Light-City
2019-12-15 16:34:05 +08:00
parent e1638bc224
commit b7dc636c14
9 changed files with 330 additions and 1 deletions

View File

@@ -129,11 +129,16 @@ for(decl:col) {
- [](./modern_++_30/RAII/heap.cpp)
- [](./modern_C++_30/RAII/stack.cpp)
- [RAII](./modern_C++_30/RAII/RAII.cpp)
- [自己动手实现C++的智能指针](./modern_C++_30/smart_ptr)
- [auto_ptr、scope_ptr](./modern_C++_30/smart_ptr/auto_scope.cpp)
- [unique_ptr](./modern_C++_30/smart_ptr/unique_ptr.cpp)
- [shared_ptr](./modern_C++_30/smart_ptr/shared_ptr.cpp)
- [右值和移动究竟解决了什么问题?](./modern_C++_30/reference)
- [左值与右值](./modern_C++_30/reference/reference.cpp)
- [延长声明周期](./modern_C++_30/reference/lifetime.cpp)
- [引用折叠](./modern_C++_30/reference/collapses.cpp)
- [完美转发](./modern_C++_30/reference/forward.cpp)
- [不要返回本地变量的引用](./modern_C++_30/reference/don'treturnReference.cpp)
### 4.拓展部分