zoukankan      html  css  js  c++  java
  • [EC++_item4]确定对象被使用前已先被初始化

    Things to Rember:

    1.Manually initialize objects of built-in type, because C++ only sometimes initializes them itself.

    为内置型对象进行手工初始化,因为C++不保证初始化它们。

    2.In a constructor, prefer use of the member initialization list to assignment inside the body of

    the constructor. List data members in the initialization list in the same order they're declared in 

    the class.

    构造函数最好使用成员初值列(member initialization list),而不要在构造函数本体内使用赋值操作(assignment)。

    初值列列出的成员变量,其排列次序应该和它们在class中的声明次序相同。

    3.Avoid initialization order problems across translation units by replacing non-local static objects with local static 

    objects.

    为免除“跨编译单元之初始化次序”问题,请以local static对象替换non-local static对象。

  • 相关阅读:
    《你一定爱读的极简欧洲史》
    PAT 1051. 复数乘法
    PAT 1050. 螺旋矩阵
    PAT 1049. 数列的片段和
    PAT 1048. 数字加密
    PAT 1047. 编程团体赛
    PAT 1046. 划拳
    PAT 1045. 快速排序
    PAT 1044. 火星数字
    PAT 1043. 输出PATest
  • 原文地址:https://www.cnblogs.com/pansj/p/EffectiveCPlusPlus_Item_4.html
Copyright © 2011-2022 走看看