Skip to content

Latest commit

 

History

History
202 lines (168 loc) · 19.2 KB

README.md

File metadata and controls

202 lines (168 loc) · 19.2 KB

Effective C++: 55 Specific Ways to Improve Your Programs and Designs

Scott Meyers. Effective C++: 55 Specific Ways to Improve Your Programs and Designs. 电子工业出版社. 侯捷译. 第三版

本书局限于 C++ 98 说实在有点过时。

C++ 11 是十分有必要学习的,快速把本书过完吧,然后再学 STL -> More Effective C++ -> Modern Effective C++

1 | 让自己习惯 C++

./drafts/cpp55.01.know.md

2 | 构造/析构/赋值运算

./drafts/cpp55.02.constructors.destructors.assignment.md

3 | 资源管理

./drafts/cpp55.03.resource.management.md

4 | 设计与声明

./drafts/cpp55.04.designs.declarations.md

5 | 实现

./drafts/cpp55.05.implementations.md

6 | 继承与面型对象设计

./drafts/cpp55.06.inheritance.md

7 | 模板与泛型编程

./drafts/cpp55.07.templates.generic.md

8 | 定制 new 和 delete

./drafts/cpp55.08.new.md

9 | 杂项讨论

./drafts/cpp55.09.miscellany.md