diff --git a/0.Public/item19_1.png b/0.Public/item19_1.png
deleted file mode 100644
index c7f9b58..0000000
Binary files a/0.Public/item19_1.png and /dev/null differ
diff --git a/README.md b/README.md
index 6da4fd6..200db49 100644
--- a/README.md
+++ b/README.md
@@ -1,15 +1,14 @@
# 《Effective Modern C++ 》翻译
-
+
[](#backers)
- [](#sponsors)
+ [](#sponsors)
-> ! 标注“已修订”的章节表示已经没有大致的错误
-> ! 我没有版权,我没有版权,我没有版权
-> ! 本书要求读者具有C++基础
-> ! [在线浏览](https://cntransgroup.github.io/EffectiveModernCppChinese)
-> ! [PDF格式英文版下载](0.Public/EffectiveModernCpp.pdf),仅供翻译参考
+> + 标注“已修订”的章节表示已经没有大致的错误
+> + 本书要求读者具有C++基础
+> + [PDF格式英文版下载](public/EffectiveModernCpp.pdf),仅供翻译参考
+> + **[在线浏览(推荐)](https://cntransgroup.github.io/EffectiveModernCppChinese)**
## 目录
0. [__简介__](src/Introduction.md)
@@ -31,43 +30,43 @@
7. [Item 13:优先考虑const_iterator而非iterator](src/3.MovingToModernCpp/item13.md)
8. [Item 14:如果函数不抛出异常请使用noexcept](src/3.MovingToModernCpp/item14.md)
9. [Item 15:尽可能的使用constexpr](src/3.MovingToModernCpp/item15.md)
- 10. [Item 16:让const成员函数线程安全](src/3.MovingToModernCpp/item16.md) 由 @windski贡献
- 11. [Item 17:理解特殊成员函数函数的生成](src/3.MovingToModernCpp/item17.md)
+ 10. [Item 16:让const成员函数线程安全](src/3.MovingToModernCpp/item16.md)
+ 11. [Item 17:理解特殊成员函数函数的生成](src/3.MovingToModernCpp/item17.md)
4. __智能指针__
- 1. [Item 18:对于独占资源使用std::unique_ptr](src/4.SmartPointers/item18.md) 由 @wendajiang贡献
+ 1. [Item 18:对于独占资源使用std::unique_ptr](src/4.SmartPointers/item18.md)
2. [Item 19:对于共享资源使用std::shared_ptr](src/4.SmartPointers/item19.md) 已修订
3. [Item 20:当std::shared_ptr可能悬空时使用std::weak_ptr](src/4.SmartPointers/item20.md)
- 4. [Item 21:优先考虑使用std::make_unique和std::make_shared,而非直接使用new](src/4.SmartPointers/item21.md) 由 @pusidun贡献
- 5. [Item 22:当使用Pimpl惯用法,请在实现文件中定义特殊成员函数](src/4.SmartPointers/item22.md) 由 @BlurryLight贡献
+ 4. [Item 21:优先考虑使用std::make_unique和std::make_shared,而非直接使用new](src/4.SmartPointers/item21.md)
+ 5. [Item 22:当使用Pimpl惯用法,请在实现文件中定义特殊成员函数](src/4.SmartPointers/item22.md)
5. __右值引用,移动语义,完美转发__
- 1. [Item 23:理解std::move和std::forward](src/5.RRefMovSemPerfForw/item23.md) 由 @BlurryLight贡献
- 2. [Item 24:区别通用引用和右值引用](src/5.RRefMovSemPerfForw/item24.md) 由 @BlurryLight贡献
- 3. [Item 25:对于右值引用使用std::move,对于通用引用使用std::forward](src/5.RRefMovSemPerfForw/item25.md)由 @wendajiang贡献
- 4. [Item 26:避免重载通用引用](src/5.RRefMovSemPerfForw/item26.md) 由 @wendajiang贡献
- 5. [Item 27:熟悉重载通用引用的替代品](src/5.RRefMovSemPerfForw/item27.md) 由 @wendajiang贡献
- 6. [Item 28:理解引用折叠](src/5.RRefMovSemPerfForw/item28.md) 由 @wendajiang贡献
- 7. [Item 29:认识移动操作的缺点](src/5.RRefMovSemPerfForw/item29.md) 由 @wendajiang贡献
- 8. [Item 30:熟悉完美转发失败的情况](src/5.RRefMovSemPerfForw/item30.md) 由 @wendajiang贡献
+ 1. [Item 23:理解std::move和std::forward](src/5.RRefMovSemPerfForw/item23.md)
+ 2. [Item 24:区别通用引用和右值引用](src/5.RRefMovSemPerfForw/item24.md)
+ 3. [Item 25:对于右值引用使用std::move,对于通用引用使用std::forward](src/5.RRefMovSemPerfForw/item25.md)
+ 4. [Item 26:避免重载通用引用](src/5.RRefMovSemPerfForw/item26.md)
+ 5. [Item 27:熟悉重载通用引用的替代品](src/5.RRefMovSemPerfForw/item27.md)
+ 6. [Item 28:理解引用折叠](src/5.RRefMovSemPerfForw/item28.md)
+ 7. [Item 29:认识移动操作的缺点](src/5.RRefMovSemPerfForw/item29.md)
+ 8. [Item 30:熟悉完美转发失败的情况](src/5.RRefMovSemPerfForw/item30.md)
6. __Lambda表达式__
- 1. [Item 31:避免使用默认捕获模式](src/6.LambdaExpressions/item31.md) 由 @LucienXian贡献
- 2. [Item 32:使用初始化捕获来移动对象到闭包中](src/6.LambdaExpressions/item32.md) 由 @LucienXian贡献
- 3. [Item 33:对于std::forward的auto&&形参使用decltype](src/6.LambdaExpressions/item33.md) 由 @LucienXian贡献
- 4. [Item 34:优先考虑lambda表达式而非std::bind](src/6.LambdaExpressions/item34.md) 由 @LucienXian贡献
+ 1. [Item 31:避免使用默认捕获模式](src/6.LambdaExpressions/item31.md)
+ 2. [Item 32:使用初始化捕获来移动对象到闭包中](src/6.LambdaExpressions/item32.md)
+ 3. [Item 33:对于std::forward的auto&&形参使用decltype](src/6.LambdaExpressions/item33.md)
+ 4. [Item 34:优先考虑lambda表达式而非std::bind](src/6.LambdaExpressions/item34.md)
7. __并发API__
- 1. [Item 35:优先考虑基于任务的编程而非基于线程的编程](src/7.TheConcurrencyAPI/Item35.md) 由 @wendajiang贡献
- 2. [Item 36:如果有异步的必要请指定std::launch::threads](src/7.TheConcurrencyAPI/item36.md) 由 @wendajiang贡献
- 3. [Item 37:从各个方面使得std::threads unjoinable](src/7.TheConcurrencyAPI/item37.md) 由 @wendajiang贡献
- 4. [Item 38:关注不同线程句柄析构行为](src/7.TheConcurrencyAPI/item38.md) 由 @wendajiang贡献
- 5. [Item 39:考虑对于单次事件通信使用void](src/7.TheConcurrencyAPI/item39.md) 由 @wendajiang贡献
- 6. [Item 40:对于并发使用std::atomic,volatile用于特殊内存区](src/7.TheConcurrencyAPI/item40.md) 由 @wendajiang贡献
+ 1. [Item 35:优先考虑基于任务的编程而非基于线程的编程](src/7.TheConcurrencyAPI/Item35.md)
+ 2. [Item 36:如果有异步的必要请指定std::launch::threads](src/7.TheConcurrencyAPI/item36.md)
+ 3. [Item 37:从各个方面使得std::threads unjoinable](src/7.TheConcurrencyAPI/item37.md)
+ 4. [Item 38:关注不同线程句柄析构行为](src/7.TheConcurrencyAPI/item38.md)
+ 5. [Item 39:考虑对于单次事件通信使用void](src/7.TheConcurrencyAPI/item39.md)
+ 6. [Item 40:对于并发使用std::atomic,volatile用于特殊内存区](src/7.TheConcurrencyAPI/item40.md)
8. __微调__
- 1. [Item 41:对于那些可移动总是被拷贝的形参使用传值方式](src/8.Tweaks/item41.md) 由 @wendajiang贡献
- 2. [Item 42:考虑就地创建而非插入](src/8.Tweaks/item42.md) 由 @wendajiang贡献
+ 1. [Item 41:对于那些可移动总是被拷贝的形参使用传值方式](src/8.Tweaks/item41.md)
+ 2. [Item 42:考虑就地创建而非插入](src/8.Tweaks/item42.md)
## 其他资源
-+ [**在线阅读**](https://cntransgroup.github.io/EffectiveModernCppChinese)
-+ 本书[PDF格式的中文版](./0.Public/translated/translate-zh-combine.pdf)见于此,该版本通常同步或者滞后于当前Markdown文档
-+ [Effective C++ Xmind Doc](./0.Public/EffectModernC++.xmind)
++ **[在线阅读(推荐,与翻译内容同步更新)](https://cntransgroup.github.io/EffectiveModernCppChinese)**
++ 本书[PDF格式的中文版](./public/translated/translate-zh-combine.pdf)见于此,该版本通常同步或者滞后于当前Markdown文档
++ [Effective C++ Xmind Doc](./public/EffectModernC++.xmind)
## 贡献者
diff --git a/0.Public/1.png b/public/1.png
similarity index 100%
rename from 0.Public/1.png
rename to public/1.png
diff --git a/0.Public/EffectModernC++.xmind b/public/EffectModernC++.xmind
similarity index 100%
rename from 0.Public/EffectModernC++.xmind
rename to public/EffectModernC++.xmind
diff --git a/0.Public/EffectiveModernCpp.pdf b/public/EffectiveModernCpp.pdf
similarity index 100%
rename from 0.Public/EffectiveModernCpp.pdf
rename to public/EffectiveModernCpp.pdf
diff --git a/0.Public/translated/Item29.pdf b/public/translated/Item29.pdf
similarity index 100%
rename from 0.Public/translated/Item29.pdf
rename to public/translated/Item29.pdf
diff --git a/0.Public/translated/Item35.pdf b/public/translated/Item35.pdf
similarity index 100%
rename from 0.Public/translated/Item35.pdf
rename to public/translated/Item35.pdf
diff --git a/0.Public/translated/README.pdf b/public/translated/README.pdf
similarity index 100%
rename from 0.Public/translated/README.pdf
rename to public/translated/README.pdf
diff --git a/0.Public/translated/item1.pdf b/public/translated/item1.pdf
similarity index 100%
rename from 0.Public/translated/item1.pdf
rename to public/translated/item1.pdf
diff --git a/0.Public/translated/item10.pdf b/public/translated/item10.pdf
similarity index 100%
rename from 0.Public/translated/item10.pdf
rename to public/translated/item10.pdf
diff --git a/0.Public/translated/item11.pdf b/public/translated/item11.pdf
similarity index 100%
rename from 0.Public/translated/item11.pdf
rename to public/translated/item11.pdf
diff --git a/0.Public/translated/item12.pdf b/public/translated/item12.pdf
similarity index 100%
rename from 0.Public/translated/item12.pdf
rename to public/translated/item12.pdf
diff --git a/0.Public/translated/item13.pdf b/public/translated/item13.pdf
similarity index 100%
rename from 0.Public/translated/item13.pdf
rename to public/translated/item13.pdf
diff --git a/0.Public/translated/item14.pdf b/public/translated/item14.pdf
similarity index 100%
rename from 0.Public/translated/item14.pdf
rename to public/translated/item14.pdf
diff --git a/0.Public/translated/item15.pdf b/public/translated/item15.pdf
similarity index 100%
rename from 0.Public/translated/item15.pdf
rename to public/translated/item15.pdf
diff --git a/0.Public/translated/item16.pdf b/public/translated/item16.pdf
similarity index 100%
rename from 0.Public/translated/item16.pdf
rename to public/translated/item16.pdf
diff --git a/0.Public/translated/item17.pdf b/public/translated/item17.pdf
similarity index 100%
rename from 0.Public/translated/item17.pdf
rename to public/translated/item17.pdf
diff --git a/0.Public/translated/item18.pdf b/public/translated/item18.pdf
similarity index 100%
rename from 0.Public/translated/item18.pdf
rename to public/translated/item18.pdf
diff --git a/0.Public/translated/item19.pdf b/public/translated/item19.pdf
similarity index 100%
rename from 0.Public/translated/item19.pdf
rename to public/translated/item19.pdf
diff --git a/0.Public/translated/item2.pdf b/public/translated/item2.pdf
similarity index 100%
rename from 0.Public/translated/item2.pdf
rename to public/translated/item2.pdf
diff --git a/0.Public/translated/item20.pdf b/public/translated/item20.pdf
similarity index 100%
rename from 0.Public/translated/item20.pdf
rename to public/translated/item20.pdf
diff --git a/0.Public/translated/item21.pdf b/public/translated/item21.pdf
similarity index 100%
rename from 0.Public/translated/item21.pdf
rename to public/translated/item21.pdf
diff --git a/0.Public/translated/item22.pdf b/public/translated/item22.pdf
similarity index 100%
rename from 0.Public/translated/item22.pdf
rename to public/translated/item22.pdf
diff --git a/0.Public/translated/item23.pdf b/public/translated/item23.pdf
similarity index 100%
rename from 0.Public/translated/item23.pdf
rename to public/translated/item23.pdf
diff --git a/0.Public/translated/item24.pdf b/public/translated/item24.pdf
similarity index 100%
rename from 0.Public/translated/item24.pdf
rename to public/translated/item24.pdf
diff --git a/0.Public/translated/item25.pdf b/public/translated/item25.pdf
similarity index 100%
rename from 0.Public/translated/item25.pdf
rename to public/translated/item25.pdf
diff --git a/0.Public/translated/item26.pdf b/public/translated/item26.pdf
similarity index 100%
rename from 0.Public/translated/item26.pdf
rename to public/translated/item26.pdf
diff --git a/0.Public/translated/item27.pdf b/public/translated/item27.pdf
similarity index 100%
rename from 0.Public/translated/item27.pdf
rename to public/translated/item27.pdf
diff --git a/0.Public/translated/item28.pdf b/public/translated/item28.pdf
similarity index 100%
rename from 0.Public/translated/item28.pdf
rename to public/translated/item28.pdf
diff --git a/0.Public/translated/item3.pdf b/public/translated/item3.pdf
similarity index 100%
rename from 0.Public/translated/item3.pdf
rename to public/translated/item3.pdf
diff --git a/0.Public/translated/item30.pdf b/public/translated/item30.pdf
similarity index 100%
rename from 0.Public/translated/item30.pdf
rename to public/translated/item30.pdf
diff --git a/0.Public/translated/item31.pdf b/public/translated/item31.pdf
similarity index 100%
rename from 0.Public/translated/item31.pdf
rename to public/translated/item31.pdf
diff --git a/0.Public/translated/item32.pdf b/public/translated/item32.pdf
similarity index 100%
rename from 0.Public/translated/item32.pdf
rename to public/translated/item32.pdf
diff --git a/0.Public/translated/item33.pdf b/public/translated/item33.pdf
similarity index 100%
rename from 0.Public/translated/item33.pdf
rename to public/translated/item33.pdf
diff --git a/0.Public/translated/item34.pdf b/public/translated/item34.pdf
similarity index 100%
rename from 0.Public/translated/item34.pdf
rename to public/translated/item34.pdf
diff --git a/0.Public/translated/item36.pdf b/public/translated/item36.pdf
similarity index 100%
rename from 0.Public/translated/item36.pdf
rename to public/translated/item36.pdf
diff --git a/0.Public/translated/item37.pdf b/public/translated/item37.pdf
similarity index 100%
rename from 0.Public/translated/item37.pdf
rename to public/translated/item37.pdf
diff --git a/0.Public/translated/item38.pdf b/public/translated/item38.pdf
similarity index 100%
rename from 0.Public/translated/item38.pdf
rename to public/translated/item38.pdf
diff --git a/0.Public/translated/item39.pdf b/public/translated/item39.pdf
similarity index 100%
rename from 0.Public/translated/item39.pdf
rename to public/translated/item39.pdf
diff --git a/0.Public/translated/item4.pdf b/public/translated/item4.pdf
similarity index 100%
rename from 0.Public/translated/item4.pdf
rename to public/translated/item4.pdf
diff --git a/0.Public/translated/item40.pdf b/public/translated/item40.pdf
similarity index 100%
rename from 0.Public/translated/item40.pdf
rename to public/translated/item40.pdf
diff --git a/0.Public/translated/item41.pdf b/public/translated/item41.pdf
similarity index 100%
rename from 0.Public/translated/item41.pdf
rename to public/translated/item41.pdf
diff --git a/0.Public/translated/item42.pdf b/public/translated/item42.pdf
similarity index 100%
rename from 0.Public/translated/item42.pdf
rename to public/translated/item42.pdf
diff --git a/0.Public/translated/item5.pdf b/public/translated/item5.pdf
similarity index 100%
rename from 0.Public/translated/item5.pdf
rename to public/translated/item5.pdf
diff --git a/0.Public/translated/item6.pdf b/public/translated/item6.pdf
similarity index 100%
rename from 0.Public/translated/item6.pdf
rename to public/translated/item6.pdf
diff --git a/0.Public/translated/item7.pdf b/public/translated/item7.pdf
similarity index 100%
rename from 0.Public/translated/item7.pdf
rename to public/translated/item7.pdf
diff --git a/0.Public/translated/item8.pdf b/public/translated/item8.pdf
similarity index 100%
rename from 0.Public/translated/item8.pdf
rename to public/translated/item8.pdf
diff --git a/0.Public/translated/item9.pdf b/public/translated/item9.pdf
similarity index 100%
rename from 0.Public/translated/item9.pdf
rename to public/translated/item9.pdf
diff --git a/0.Public/translated/translate-zh-combine.pdf b/public/translated/translate-zh-combine.pdf
similarity index 100%
rename from 0.Public/translated/translate-zh-combine.pdf
rename to public/translated/translate-zh-combine.pdf