📜  数据成员的初始化

📅  最后修改于: 2021-05-26 00:19:26             🧑  作者: Mango

在C++中,类变量的初始化顺序与它们在类声明中显示的顺序相同。

考虑下面的代码。

#include
  
using namespace std;
  
class Test {
  private:    
    int y;
    int x;    
  public:
    Test() : x(10), y(x + 10) {}
    void print();
};
  
void Test::print()
{ 
   cout<<"x = "<
// First: Change the order of declaration.
class Test {
  private:    
    int x;    
    int y;
  public:
    Test() : x(10), y(x + 10) {}
    void print();
};
// Second: Change the order of initialization.
class Test {
  private:    
    int y;
    int x;    
  public:
    Test() : x(y-10), y(20) {}
    void print();
};
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”