devxlogo

Problem Instantiating a Class Instance in Its Own Constructor

Problem Instantiating a Class Instance in Its Own Constructor

Assigning a data member with another member of the same class in the member intialization list results in this:

class test{	public:		test (int y) : j (y), i(j)		{		}	private:		int i;		int j;};

The compiler generates an internal code for your written code:

test (int y){	i = j;	j = y;}

The compiler initializes and assigns data members in the same order in which you’ve made your member declaration. In this instance, the compiler has assigned the value of “j” to the variable “i” before it has assigned any value to “j.”

To avoid this, redefine your ctor the following way;

test (int y ) : j(y){	i = j;}

The compiler then generates the following code:

test(int y){	j = y;	i = j;}
See also  Why ChatGPT Is So Important Today
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