I searched how to implement + operator properly all over the internet and all the results i found do the following steps :
const MyClass MyClass::operator+(const MyClass &other) const
{
MyClass result = *this; // Make a copy of myself. Same as MyClass result(*this);
result += other; // Use += to add other to the copy.
return result; // All done!
}
I have few questions about this "process" :
Isn't that stupid to implement + operator this way, it calls the assignment operator(which copies the class) in the first line and then the copy constructor in the return (which also copies the class , due to the fact that the return is by value, so it destroys the first copy and creates a new one.. which is frankly not really smart ... )
When i write a=b+c, the b+c part creates a new copy of the class, then the 'a=' part copies the copy to himself. who deletes the copy that b+c created ?
Is there a better way to implement + operator without coping the class twice, and also without any memory issues ?
thanks in advance
a = b + c;. The resulting output may surprise you, and it is pretty educational when you are first learning C++. – Brian Neal May 19 '10 at 14:19resultvariable is an auto-scoped variable that lives on the stack. It goes out of scope when the function returns and is destroyed as part of the function cleanup automatically. It is not, however deleted. – Nathan Ernst May 19 '10 at 15:01MyClass& MyClass::operator+=(MyClass rhs);andMyClass operator+(const MyClass& lhs, const MyClass& rhs);. You should avoid havingoperator+as a member function if you wish automatic conversion to occur on the left hand side member too. – Matthieu M. May 19 '10 at 16:55