读书笔记:《Effective C++》

Effective C++

GitHub - taeguk/Effective-Cpp-Series: My example and experimental source codes about books of Effective C++ Series, “Effective C++ 3/E” and “Effective Modern C++” by Scott Meyers.

C++ Basic

C++ Union

  • C
  • Object Oriented C++
  • Template C++
  • STL
  • TR1 - Boost

Using const,enum,inline instead of #define

  • constant:using const or enum
    • static int constant can not have in-class definition
      • using enum hack:enum { ConstNum = 5 };
  • function macros:using inline function

Using const whenever possible

  • bitwise constness: c++ const
  • logical constness: mutable field
  • call const function in non-const override functin, to avoid code redundant

Make sure init before use

  • in construct function:
    • using member init list instead of assignment inside function
    • order by class-field-define-order in init list
  • using static object in-function instead of global static object
    • return reference of static local object

Constructor,Destructor, Assignment op

Silent functions in class

  • default construction
  • default copy construction
  • operator=
  • destruction
  • explicitly use silent functions
    • = default

Explicitly delete silent functions

  • make private
  • make delete
  • move private or delete to a base class and private extend

Virtual destructors in polymorphic

  • use virtual destruction in polymorphic base class

Non-throw destructors

  • handle exceptions out of destruction
  • abort when destruction meet exceptions
  • ignore exceptions in destruction

No virtual call in construction and destruction

  • in construction or destruction, virtual call can not goto derived class

Operator= return *this

  • return *this in operator= to support multi =

Operator= handle self-assignment

  • make sure good condition when self-assignment

Deep copy when copy

  • copy construction
    • call base copy construction
  • operator=
    • call base operator=
  • do not call copy construction in operator=, or otherwise

Resource Management

Using resource-managing class

  • using RAII class
    • new resource when construction
    • delete resource when destruction
  • using smart pointers

Copying resource-managing class

  • disable copying: unique ptr
  • reference count: shared ptr
  • deep copy resource
  • move raw resource

Access raw in resource-managing class

  • implict cast: use operator(), can be unsafe
  • explict cast: use get(), more safer

Same form in new and delete

  • new and delete
  • new[] and delete[]

Standalone statement when smart pointers

  • give new resource to smart pointer in one statement
    • using make_shared, though it will keep reference count when having weak ptr
  • construct smart pointer in standalone statement
    • to avoid other part of statement has exceptions

Design

Make interface to easy use

  • make new type or enum,static or const value,to make use correctly

Design class as type

  • does a new type is really needed
    • consider using non-member to replace a simple derived class

Pass by const reference instead of value

  • consider pass by const reference in all place
  • pass by value when standard types or function object

Dont return reference

  • do not return reference of stack or heap value

Make data member private

  • public data member expose the implement details
    • when change public,all user must be changed
    • when change protected,all derived must be changed

Non-member instead of member function

  • non-member function can only use public interface, and keep the encapsulation

Non-member function when type conversion

  • member function can not conversion the caller’s type, while non-member function can

Non-throw swap

  • using std::swap
  • using std::swap in member swap
  • using member swap in non-member swap

Implementation

Postpone variable definitions

  • avoid early returns case no-use variable
  • consider re-construction or keep the variable to operator=

Consider casting

  • dynamic cast is low efficiency
  • C cast:
    • (T)exp
    • T(exp)
  • C++ cast:
    • const cast
    • dynamic cast
    • static cast
    • reinterpret cast

Avoid return handles of object internals

  • when return handles of object internals, not only the function is const, also the return is const
    • const InternalHandle func() const

Strive for exception safe

  • exception safe:
    • when exception, no memery leak, no fake state
  • exception safe level:
    • base exception safe: when exception, no memery leak, no fake state
    • force exception safe: when exception, function is full completed or none completed
      • copy and swap
    • nothrow exception safe: no exception

Inlining

  • inline is an advice, not a request
  • when inline function changed, all dependence file must be re-compile
  • when non-inline function changed, only need to re-link

Compilation dependency

  • only declare class in classfwd.h, and define those in class.h
    • class declare no change, only change class definition
  • handle class: implementation pointer to implementation class
    • handle class no change, only change implementation class
    • additional memory resource management
  • interface class: vptr to virtual function
    • base class no change, only change derived class
    • addition virtual table cost

Inheritance and OOP

Public inheritance means is-a

  • make sure public inheritance means is-a relationship
    • not has-a relationship
    • not implement-of relationship

Avoid hiding base class through overwrite

  • the same name in child class will hide those in base class, though parameters are different
    • using BaseClass::function for not hiding
    • BaseClass::function directly for using once

Interface extend and implementation extend

  • pure virtual: interface extend
  • impure virtual: interface extand and default implementation
    • if no same name, using default implementation
    • if has same name, hide the default implementation
  • non-virtual: implementation extend
    • will hide implementation if the same name in child

Alternative virtual

  • template method
    • template method has implementation extend, which can be final
    • call virtual method which has default implementation, also can be overriden
  • strategy pattern
    • using function ptr
    • using std::function

Never redefine non-virtual from base class

  • base class implementation will be hiden
  • also non-virtual function is statically bound, which means, using base class ptr or reference will call the base version

Never redefine default parameters

  • virtual function is dynamically bound, while default parameter is statically bound
  • which means, virtual function is about the dynamical type, and default parameter is about static type
  • alternative implementation: template method
    • non-virtual function to override default parameter
    • call virtuall function to core implementation

Composition means has-a or implement-of

  • composition is different from public inheritance
    • has-a
    • implement-of: using public interface to implement new feature
      • ex, using list to implement set

Private inheritance means implement-of

  • when implement-of is using protected member, consider private inheritance

Multiple inheritance

  • virtual inheritance to handle diamond inheritance
  • only use multiple inheritance when implement-of
    • multiple implement interface class
    • multiple implement private inheritance

Template & Generic Programming

Implicit interface and compile-time polymoriphism

  • class inheritance and class template both support interface and ploymoriphism
  • class inheritance is explicit support
  • class template is implicit support

Using typename

  • using typename means it is a type not others
    • typename Class::Type_t

Templatized base class

  • using template class as base class:
    • template class Child: public Base
  • call function in base tempalte class space:
    • just simple func() won’t work
    • force this->func()
    • force using Base::func
    • force Base::func()

Template Parameter

  • non-type template parameter change to function parameter, to reduce code size
  • type template parameter using shared implementation to reduce code size
    • in base class
    • in non-member function

Member function template

  • template Class(U)
    • used in construction
    • used in copy construction or operator=
      • default version is still needed

Non-member function to cast

  • member function can not conversion the caller’s type, while non-member function can

Traits class

  • using traits class to only handle types in different template specializing

Meta programming

  • get result when compiling
    • make sure unit is aligned
    • simplify expression computation
    • implement strategy pattern

New & Delete

  • new handler
    • when operator new failed of OOM, will call new handler
    • using set_new_handler to set, usually return abort or exit
  • new (std::throw)
    • common new throw bad_alloc when failed
    • nonthrow-new return nullptr when failled
    • though opreator new wont throw, constructor will throw exception either
  • why self-defined operator new and delete
    • for debug or stats
    • for long-term program or short-term program, big-block or tiny-block to accelate
      • which standard new and delete are for common use
  • self-defined operator new: static void* operator new (std::size_t) throw (std::bad_alloc);
    • handle size is not equal to class size
    • allocate memory in a while loop
    • call new_handler when failed
    • return size-1 when ask for size-0 memory
  • self-defined operator delete: static void operator delete (void*) throw();
    • handle size is not equal to class size
  • self-defined placement new and delete
    • static void* operator new (std::size_t, void*) throw (std::bad_alloc);
    • static void operator delete (void*, void*) throw();
    • self-define both at the same time
  • do not overwrite the standard new and delete
    • explict define standard new and delete in base class
    • add using BaseClass:: operator new/delete in child class if you want to use the standard one

Miscellany

  • TR1 是一份规范文档,Boost 则是这个规范的实现,最终会并入 C++ 标准库中

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/190690.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java数据结构之《折半查找》题目

一、前言: 这是怀化学院的:Java数据结构中的一道难度中等的一道编程题(此方法为博主自己研究,问题基本解决,若有bug欢迎下方评论提出意见,我会第一时间改进代码,谢谢!) 后面其他编程题只要我写完…

自定义函数中的(int*a,int*b)与(int*a,int n)

事实上第一种更安全,不会因越界发生占位,从而导致错误。

C++的类和对象(一)

目录 1、面向过程和面向对象初认识 2、为什么要有类 3、类的定义 类的两种定义方式 4、类的访问限定符 5、类的作用域 5.1 为什么要有作用域? 5.2类作用域 6、类的实例化 6.1类的实例化的定义 6.2类的实例化的实现 6.3经典面试题 7、类对象 7.1类对…

计算机体系结构补充篇----静态超标量流水线及循环展开(一)

本文仅供学习,不作任何商业用途,严禁转载。部分资料取自----计算机系统结构教程(第二版)张晨曦等。部分资料来自----国科大计算机体系结构课程PPT–张科、刘珂、高婉玲 计算机体系结构----静态超标量流水线及循环展开(一) 摘要静…

Java加解密算法

Base64 Java 实现 Base64 加密&解密方法_java base64加密-CSDN博客 MD5 蓝易云:java实现md5加解密_java后端md5解密_tiansyun的博客-CSDN博客 HMACShA256 Java HMACShA256_java hmacsha256算法-CSDN博客

FreeRTOS第2天:

1. 二值信号量简介(386.11) 什么是信号量? 信号量(Semaphore),是在多任务环境下使用的一种机制,是可以用来保证两个或多个关键代码段不被并 发调用。信号量这个名字,我们可以把它拆…

【Python-第三方库-pywin32】随笔- Python通过`pywin32`获取窗口的属性

Python通过pywin32获取窗口的属性 基础 获取所有窗口的句柄 【代码】 import win32guidef get_all_windows():hWnd_list []win32gui.EnumWindows(lambda hWnd, param: param.append(hWnd), hWnd_list)print(hWnd_list)return hWnd_list【结果】 获取窗口的子窗口句柄 【代…

【蓝桥杯软件赛 零基础备赛20周】第5周——高精度大数运算与队列

文章目录 1. 数组的应用–高精度大数运算1.1 Java和Python计算大数1.2 C/C高精度计算大数1.2.1 高精度加法1.2.2 高精度减法 2. 队列2.1 手写队列2.1.1 C/C手写队列2.1.2 Java手写队列2.1.3 Python手写队列 2.2 C STL队列queue2.3 Java队列Queue2.4 Python队列Queue和deque2.5 …

边缘数据中心和5G的融合彻底改变数据传输和物联网

伴随着数字化时代的飞速发展,边缘数据中心和5G技术的联袂崛起,正深刻塑造着人们对数据的创造、传输和处理方式。据Gartner公司的预测,到2025年,企业数据的三分之二将在边缘计算设施中涌现,而非传统的集中式数据中心。这…

conan 入门(三十四):conan 2.x实现对只有Makefile的项目(erpcgen)的封装示例

一些已有的较老旧的项目只有Makefile,一般在Linux下编译,windows下编译需要借助cygwin或msys2,对于这样的项目如何实现conanfile.py使用conan进行构建呢?本文以erpc/erpcgen为例,说明实现步骤。 eRPC (Embedded RPC是一个适用于嵌…

134. 加油站(贪心算法)

根据题解 这道题使用贪心算法,找到当前可解决问题的状态即可 「贪心算法」的问题需要满足的条件: 最优子结构:规模较大的问题的解由规模较小的子问题的解组成,规模较大的问题的解只由其中一个规模较小的子问题的解决定&#xff…

分享88个节日PPT,总有一款适合您

分享88个节日PPT,总有一款适合您 88个节日PPT下载链接:https://pan.baidu.com/s/1mfLrdlB9Y1jqz2vkVIwBNA?pwd6666 提取码:6666 Python采集代码下载链接:采集代码.zip - 蓝奏云 学习知识费力气,收集整理更不易…

Markdown学习测试

这里写自定义目录标题 欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants 创建一个自定义列表如何创建一个…

国产Type-C接口逻辑协议芯片:Type-C显示器芯片方案

产品介绍 双Type-C盲插选型: LDR6282 PD3.0认证协议芯片,USB-IF TID号:212 支持iic,USB转UART,CC升级方式,多年市场验证,显示器市场出货量,显示器大厂采用兼容性NO.1。采用QFN32 5…

系列十五、SpringBoot的启动原理分析

一、概述 所谓SpringBoot的启动原理,翻译成大白话就是"当我们在主启动类上运行run方法时,SpringBoot底层到底做了什么事情,能够帮助我们启动一个Spring的web应用",上边用大白话解释了一下什么是SpringBoot的启动原理&am…

vue 解决响应大数据表格渲染崩溃问题

如果可以实现记得点赞分享,谢谢老铁~ 1.场景描述 发起请求获取上万条数据,进行表格渲染,使浏览器卡顿,导致网页崩溃。 2.分析原因 1.大量数据加载,过多操作Dom,消耗性能。 2.表格中包含其他…

160. 相交链表

160. 相交链表 考研那段时间记得太牢了。 当然也是简单题。。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) {* val x;* next null;* }* }*/ public class Solution {p…

数据库设计实践:粒度的理解与应用示例

粒度是描述数据存储和表示的详细程度。在数据库设计中,理解和正确选择粒度是非常重要的,因为它直接影响到数据的存储效率、查询性能和数据分析的灵活性。 文章目录 粒度的类型:案例粒度选择的考虑因素实际应用 粒度的类型: 细粒度…

24双非硕的秋招总结

24 双非硕的秋招总结 结果: 运气捡漏去了腾讯 想想自己整个研究生学习过程,还是挺坎坷的,记录一下,也给未来的同学提供一些参考。 研一 我是研一上开始学前端的,应该是21年10月份左右,我们实验室是专门…