tag: #Effective C++ (14 posts)
Show all books- 2022-03-30 :: Part4-设计与声明
- 2022-03-28 :: item13、14、15、16、17:资源管理
- 2022-03-22 :: item12-复制对象时要复制所有成员
- 2022-03-21 :: item10-令operator=返回一个对象引用
- 2022-03-21 :: item11-在operator=中处理自我赋值
- 2021-01-06 :: Item1-视C++为一个语言联邦
- 2021-01-06 :: Item2-尽量使用 const、enum、inline等替换 #define
- 2021-01-06 :: Item3-尽可能使用const
- 2021-01-06 :: Item4-确保对象在使用前被初始化
- 2021-01-06 :: Item5-了解 C++ 默认添加和调用的函数
- 2021-01-06 :: Item6-若不想使用编译器自动生成的函数,就该明确拒绝
- 2021-01-06 :: Item7-为多态基类声明 virtual 析构函数
- 2021-01-06 :: Item8-别让异常逃离析构函数
- 2021-01-06 :: item9-绝不在构造和析构过程中调用virtual函数