文件名改为小写

This commit is contained in:
johnwdjiang 2020-09-07 22:06:13 +08:00
parent 6fcf089f12
commit 22b384269f
2 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@
4. Item 26:避免重载通用引用
5. Item 27:熟悉重载通用引用的替代品
6. Item 28:理解引用折叠
7. [Item 29:认识移动操作的缺点](https://github.com/kelthuzadx/EffectiveModernCppChinese/blob/master/5.RvalueReferences_MovingSemantics_And_PerfectForwarding/Item29.md) __由 @wendajiang贡献__
7. [Item 29:认识移动操作的缺点](https://github.com/kelthuzadx/EffectiveModernCppChinese/blob/master/5.RvalueReferences_MovingSemantics_And_PerfectForwarding/item29.md) __由 @wendajiang贡献__
8. Item 30:熟悉完美转发失败的情况
6. Lambda表达式
1. [Item 31:避免使用默认捕获模式](https://github.com/kelthuzadx/EffectiveModernCppChinese/blob/master/6.Lambda%20Expressions/item31.md) __由 @LucienXian贡献__
@ -54,14 +54,14 @@
3. Item 33:对于std::forward的auto&&形参使用decltype
4. Item 34:有限考虑lambda表达式而非std::bind
7. 并发API
1. [Item 35:优先考虑基于任务的编程而非基于线程的编程](https://github.com/kelthuzadx/EffectiveModernCppChinese/blob/master/7.The%20Concurrency%20API/Item35.md) __由 @wendajiang贡献__
1. [Item 35:优先考虑基于任务的编程而非基于线程的编程](https://github.com/kelthuzadx/EffectiveModernCppChinese/blob/master/7.The%20Concurrency%20API/item35.md) __由 @wendajiang贡献__
2. Item 36:如果有异步的必要请指定std::launch::threads
3. Item 37:从各个方面使得std::threads unjoinable
4. Item 38:知道不同线程句柄析构行为
5. Item 39:考虑对于单次事件通信使用void
6. Item 40:对于并发使用std::atomicvolatile用于特殊内存区
8. 微调
1. [Item 41:对于那些可移动总是被拷贝的形参使用传值方式](https://github.com/kelthuzadx/EffectiveModernCppChinese/blob/master/8.Tweaks/Item41.md) __由 @wendajiang贡献__
1. [Item 41:对于那些可移动总是被拷贝的形参使用传值方式](https://github.com/kelthuzadx/EffectiveModernCppChinese/blob/master/8.Tweaks/item41.md) __由 @wendajiang贡献__
2. Item 42:考虑就地创建而非插入
## 贡献者