devxlogo

One more thing to remember when defining copy constructor and operator=

One more thing to remember when defining copy constructor and operator=

Assigning an object to itself is disastrous, so whenever you have to define a copy constructor and assignment operator, make sure your code is guarded from such a mistake:

 class Date {	int day, month, year;	//...	Date & operator= (const Date & other){ *this=other; //Dangerous 								return *this;}	//...}void f () {	Date d;	Date *pdate = &d;	//...many lines of code 	*pdate=d; //oops, object assigned to itself; disastrous}//f()

A safe version should look like this:

 Date & Date::operator= (const Date & other) { 	if (&other != this) //guarded from self assignment	{		*this = other;		//...	}	return *this; }
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