devxlogo

Place a Member Initialization List in a Constructor

Place a Member Initialization List in a Constructor

In the following example, a member initialization list appears in the inline definition of the constructor, inside the class body:

 class ratio {private: int x, y;public: ratio(int top, int bot) :x(top), y(bot){}};

If you prefer to define the constructor outside the class, you can still use a member initialization list. First, provide only a declaration (i.e., a prototype) inside the class body:

 class ratio {private: int x, y;public: ratio(int top, int bot); // no initialization list here};

Next, place the member-initialization list in the constructor

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist