devxlogo

Base Class Constructor With Arguments

Base Class Constructor With Arguments

When a constructor has to pass arguments to its base class constructor or to an embedded object, you must use a mem-initializer:

 class base {private:  int num1;  char * text;public:  base(int n1, char * t) {num1 = n1; text = t; } //no default constructor, all arguments must be supplied};class derived : public base {public:  derived (int n, char * t) : base(n, t) {}   // pass arguments to a base class };
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