mirror of
https://github.com/CnTransGroup/EffectiveModernCppChinese.git
synced 2025-01-16 07:10:16 +08:00
93 lines
7.1 KiB
Markdown
93 lines
7.1 KiB
Markdown
# 《Effective Modern C++ 》翻译
|
||
![bookLogo](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/x.public/1.png?raw=true)
|
||
[![Backers on Open Collective](https://opencollective.com/EffectiveModernCppChinese/backers/badge.svg)](#backers)
|
||
[![Sponsors on Open Collective](https://opencollective.com/EffectiveModernCppChinese/sponsors/badge.svg)](#sponsors)
|
||
|
||
> ! 2017.10开始更新<br>
|
||
> ! 我没有版权,我没有版权,我没有版权<br>
|
||
> !本书要求读者具有C++基础<br>
|
||
> !未翻译的条款名称现在直译,翻译时可能适当修改<br>
|
||
> !条款后的revised表明该条款已经经过初步修订<br>
|
||
|
||
# 目录
|
||
1. 类型推导
|
||
1. [Item 1:理解模板类型推导](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/1.DeducingTypes/item1.md)_revised_
|
||
2. [Item 2:理解auto类型推导](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/1.DeducingTypes/item2.md)
|
||
3. [Item 3:理解decltype](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/1.DeducingTypes/item3.md)
|
||
3. [Item 4:学会查看类型推导结果](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/1.DeducingTypes/item4.md)
|
||
2. auto
|
||
1. [Item 5:优先考虑auto而非显式类型声明](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/2.auto/item5.md)
|
||
2. [Item 6:auto推导若非己愿,使用显式类型初始化惯用法](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/2.auto/item6.md)
|
||
3. 移步现代C++
|
||
1. [Item 7:区别使用()和{}创建对象](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/3.MovingToModernCpp/item7.md)
|
||
2. [Item 8:优先考虑nullptr而非0和NULL](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/3.MovingToModernCpp/item8.md)
|
||
3. [Item 9:优先考虑别名声明而非typedefs](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/3.MovingToModernCpp/item9.md)
|
||
4. [Item 10:优先考虑限域枚举而非未限域枚举](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/3.MovingToModernCpp/item10.md) _revised_
|
||
5. [Item 11:优先考虑使用deleted函数而非使用未定义的私有声明](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/3.MovingToModernCpp/item11.md)
|
||
6. [Item 12:使用override声明重载函数](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/3.MovingToModernCpp/item12.md)
|
||
7. [Item 13:优先考虑const_iterator而非iterator](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/3.MovingToModernCpp/item13.md)
|
||
8. [Item 14:如果函数不抛出异常请使用noexcept](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/3.MovingToModernCpp/item14.md)
|
||
9. [Item 15:尽可能的使用constexpr](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/3.MovingToModernCpp/item15.md) _updating_
|
||
10. [Item 16:让const成员函数线程安全](https://github.com/racaljk/EffectiveModernCppChinese/blob/master/3.MovingToModernCpp/item16.md) __contribute by @windski__
|
||
11. Item 17:理解特殊成员函数函数的生成
|
||
4. 智能指针
|
||
1. Item 18:对于占有性资源使用std::unique_ptr
|
||
2. Item 19:对于共享性资源使用std::shared_ptr
|
||
3. Item 20:对于类似于std::shared_ptr的指针使用std::weak_ptr可能造成悬置
|
||
4. Item 21:优先考虑使用std::make_unique和std::make_shared而非new
|
||
5. Item 22:当使用Pimpl惯用法,请在实现文件中定义特殊成员函数
|
||
5. 右值引用,移动语意,完美转发
|
||
1. Item 23:理解std::move和std::forward
|
||
2. Item 24:区别通用引用和右值引用
|
||
3. Item 25:对于右值引用使用std::move,对于通用引用使用std::forward
|
||
4. Item 26:避免重载通用引用
|
||
5. Item 27:熟悉重载通用引用的替代品
|
||
6. Item 28:理解引用折叠
|
||
7. Item 29:认识移动操作的缺点
|
||
8. Item 30:熟悉完美转发失败的情况
|
||
6. Lambda表达式
|
||
1. Item 31:避免使用默认捕获模式
|
||
2. Item 32:使用初始化捕获来移动对象到闭包中
|
||
3. Item 33:对于std::forward的auto&&形参使用decltype
|
||
4. Item 34:有限考虑lambda表达式而非std::bind
|
||
7. 并发API
|
||
1. Item 35:优先考虑基于任务的编程而非基于线程的编程
|
||
2. Item 36:如果有异步的必要请指定std::launch::threads
|
||
3. Item 37:从各个方面使得std::threads unjoinable
|
||
4. Item 38:知道不同线程句柄析构行为
|
||
5. Item 39:考虑对于单次事件通信使用void
|
||
6. Item 40:对于并发使用std::atomic,volatile用于特殊内存区
|
||
8. 微调
|
||
1. Item 41:对于那些可移动总是被拷贝的形参使用传值方式
|
||
2. Item 42:考虑就地创建而非插入
|
||
|
||
## Contributors
|
||
|
||
This project exists thanks to all the people who contribute.
|
||
<a href="https://github.com/racaljk/EffectiveModernCppChinese/graphs/contributors"><img src="https://opencollective.com/EffectiveModernCppChinese/contributors.svg?width=890&button=false" /></a>
|
||
|
||
|
||
## Backers
|
||
|
||
Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/EffectiveModernCppChinese#backer)]
|
||
|
||
<a href="https://opencollective.com/EffectiveModernCppChinese#backers" target="_blank"><img src="https://opencollective.com/EffectiveModernCppChinese/backers.svg?width=890"></a>
|
||
|
||
|
||
## Sponsors
|
||
|
||
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/EffectiveModernCppChinese#sponsor)]
|
||
|
||
<a href="https://opencollective.com/EffectiveModernCppChinese/sponsor/0/website" target="_blank"><img src="https://opencollective.com/EffectiveModernCppChinese/sponsor/0/avatar.svg"></a>
|
||
<a href="https://opencollective.com/EffectiveModernCppChinese/sponsor/1/website" target="_blank"><img src="https://opencollective.com/EffectiveModernCppChinese/sponsor/1/avatar.svg"></a>
|
||
<a href="https://opencollective.com/EffectiveModernCppChinese/sponsor/2/website" target="_blank"><img src="https://opencollective.com/EffectiveModernCppChinese/sponsor/2/avatar.svg"></a>
|
||
<a href="https://opencollective.com/EffectiveModernCppChinese/sponsor/3/website" target="_blank"><img src="https://opencollective.com/EffectiveModernCppChinese/sponsor/3/avatar.svg"></a>
|
||
<a href="https://opencollective.com/EffectiveModernCppChinese/sponsor/4/website" target="_blank"><img src="https://opencollective.com/EffectiveModernCppChinese/sponsor/4/avatar.svg"></a>
|
||
<a href="https://opencollective.com/EffectiveModernCppChinese/sponsor/5/website" target="_blank"><img src="https://opencollective.com/EffectiveModernCppChinese/sponsor/5/avatar.svg"></a>
|
||
<a href="https://opencollective.com/EffectiveModernCppChinese/sponsor/6/website" target="_blank"><img src="https://opencollective.com/EffectiveModernCppChinese/sponsor/6/avatar.svg"></a>
|
||
<a href="https://opencollective.com/EffectiveModernCppChinese/sponsor/7/website" target="_blank"><img src="https://opencollective.com/EffectiveModernCppChinese/sponsor/7/avatar.svg"></a>
|
||
<a href="https://opencollective.com/EffectiveModernCppChinese/sponsor/8/website" target="_blank"><img src="https://opencollective.com/EffectiveModernCppChinese/sponsor/8/avatar.svg"></a>
|
||
<a href="https://opencollective.com/EffectiveModernCppChinese/sponsor/9/website" target="_blank"><img src="https://opencollective.com/EffectiveModernCppChinese/sponsor/9/avatar.svg"></a>
|
||
|
||
|