devxlogo

Calling an object’s member function from its constructor

Calling an object’s member function from its constructor

An object’s member functions (both virtual and non-virtual) can be called from its constructor. The invoked virtual is guaranteed to be the one defined in the current object (or higher, if it has not been overridden in the current object). However, virtuals of objects derived from the one whose constructor is being executed are not called.

 class A {	public:	virtual void f() {}	virtual void g() {}};class B: public  A {	public:	void f () {} //overriding A::f()	B() { f(); //calls B::f()		g(); //g() not overriden in B, therefore calling A::g()  }};

Mind that if the object’s member functions use object data members, it is the implementor’s responsibility to initialize them first, preferably by a mem-initializer list:

 class C {	int n;	int  getn() const { cout<						//is called; otherwise - n would
//have an undefined value};
See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
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