Question:
I would like to know for containment (having objects as data member), what is meant by “if the inner class object’s constructor requires parameters, the initialization syntax must be used in the outer class’s constructor”? Please provide me with an example.
Answer:
Suppose you have a class called A, which contains an object of class B as a data member. B has no default constructor. Therefore, A’s constructor must initialize the embedded B object using a member initialization list:
class B{public: B(int n); // no default ctor};class A{private: B b;public: A() : b(5) {} // initialize b explicitly};
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.





















