c++中尽量用const,enum,inline替换#define

一般声明在头文件,

注意:在class中声明常量通常要加static

例:class A 

{

  public:

    static const int a = 0;

}

 

对于单纯的常量,最好以const或enums替换#define

 

11.14 永远在使用对象前进行初始化

C++规定构造函数初始化发生在进入构造函数之前

例1:

class A{

public:

   void func(const std::int& n);

private:

   std::int numbel;

}

void A::func(const std::int& n)

{

  numbel = n;      //此处属于赋值,不属于初始化

}

例2:

void A::func(const std::int& n):numbel(n)    //这里才算是初始化   用初始化列表进行初始化

{ }

 

 

 

 

 

 

 

 

       

posted @ 2022-11-14 18:34  罗罗罗狗蛋  阅读(18)  评论(0编辑  收藏  举报