在类的构造函数初始化列表中初始化,如:CRect类的构造函数需要四个 int 型参数,那么 A 的构造函数可以这样写class A{public: A();private: CRect m_rect;};A::A() : m_rect(0, 0, 100, 100){}