Hello all,

I have a doubt concerning to overloaded operators.
Does the compiler create new temporary object to the elements involved on the overloaded operation?

E.g. Operator + overloaded.

a = b + c;

Does the compiler creat temporary object for b and c?

See the following code and the print outs. When the + operator is called, 3 new objects are destroyed and I cant see the construction message.
I guess the default copy constructor is called by the compiler, but I am not sure.

Does any one knows the answer for this question???

Thank you,
Helbert

// Class1.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>

using namespace std;
class Rectangle{
	int x, y;
	
	public:
		Rectangle(int x, int y);
		Rectangle(){cout << "Created:  " << this << endl;};
		void set_values(int x, int y);
		int getX() {return x;};
		int getY() {return y;};
		int area() {return (x*y); }
		Rectangle operator +(Rectangle);
		~Rectangle();
};

Rectangle::Rectangle(int x, int y){
	this->x = x;
	this->y = y;
	cout << "Created:  " << this << endl;
}

Rectangle::~Rectangle(){
	cout << "Retangle has been destroyed  " << this << endl;
}

Rectangle Rectangle::operator +(Rectangle add){
	Rectangle tmp;
	tmp.set_values(add.getX(), add.getY());
	return tmp;
}
void Rectangle::set_values(int x, int y){
	this->x = x;
	this->y = y;
}
int main(){
	
	Rectangle rect(2,3);
	Rectangle rectb(1,2);
	Rectangle rectc;
	
	cout << "AREA: " << rect.area() << endl;

	cout << "AREA: " << rectb.area() << endl;

	rectc = rect + rectb;

	cout << "AREA: " << rectc.area() << endl;
	return 0;
}

Recommended Answers

All 3 Replies

with

class Rectangle
{
  //...
  public:
  //...
     Rectangle operator +(Rectangle);
  //...
};

// a, b, c are Rectangles a = b + c ; evaluates to a = b.operator+(c) ; since c is passed by value, a copy of c is made (and destroyed later).
the return value is an anonymous temporary, which is constructed on return (and destroyed).
if you got a third construct/destroy, the (perhaps old?) compiler you are using is not doing any NRV optimization (in the implementation, temporary Rectangle tmp is constructed and destroyed on return).

to avoid the copy, and to make the code const-correct, write

class Rectangle
{
  //...
  public:
  //...
     Rectangle operator+ ( const Rectangle& ) const ;
  //...
};

note: adding rectangles does not seem to be intuitive.

Thanks for the explanation.

About the solution ( const Rectangle& ) const ; , if I do so, I get a compiling error ": error C2662: 'Rectangle::getX' : cannot convert 'this' pointer from 'const Rectangle' to 'Rectangle &' Conversion loses qualifiers
. Any clue??

About the "adding rectangles" stuff, it is just an exercice. I started with the rectangles and then adding functionalities :-)

Thanks again!

You can't overload the + operator to be const unless you change the operation to not modify *this. In other words, if you change *this, get rid of the second const.

The + operator typically is expected to not modify the b object (as vijayan121 explained with a = b.operator+(c) ; ).

Hence, the typical layout of such a function is:

Rectangle Rectangle::operator + (const Rectangle& rect) const
  {
  Rectangle result;
  result.x = this->x + rect.x;
  ...
  return result;
  }

Unless your object uses a lot of memory or other resources or has existential side-effects, I wouldn't really worry too much about temporaries. For something like your Rectangle, the difference is negligible: copying is fast and often optimized away.

Hope this helps.

[edit]
Oh yeah, often, to avoid duplicating code, the + operator is often written in terms of the += operator:

Rectangle Rectangle::operator + (const Rectangle& rect) const
  {
  return (Rectangle( *this ) += rect);
  }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.