vote up 1 vote down star
1

If I've overloaded operator+ and operator= do I still need to overload operator+= for something like this to work: -?-

MyClass mc1, mc2; mc1 += mc2;

flag

71% accept rate
9  
Try it and see for yourself. This is an incredibly quick test. – Brian Jul 7 at 13:29
4  
It' easy to gain empirical results, but there is a times you still need some explanation. – Artem Barger Jul 7 at 13:43
@Artem sure, sometimes, in this case it won't even compile and does not concern intricate features of language semantics - just pick any reference on C++, it'll tell you enough about operators overloading – MadH Jul 7 at 13:57

4 Answers

vote up 6 vote down check

operator+= is not a composite of + and =, therefore you do need to overload it explicitly, since compiler do not know to build puzzles for you. but still you do able to benefit from already defined/overloaded operators, by using them inside operator+=.

link|flag
vote up 7 vote down

Yes, you do.

link|flag
vote up 16 vote down

Yes, you need to define that as well.

A common trick however, is to define operator+=, and then implement operator+ in terms of it, something like this:

MyClass operator+ (const MyClass& lhs, const MyClass& rhs){
  MyClass out = lhs;
  out += rhs;
  return out;
}

If you do it the other way around (use + to implement +=), you get an unnecessary copy operation in the += operator which may be a problem i performance-sensitive code.

link|flag
vote up 1 vote down

If the real question here is, "I don't want to write a load of repetitive operators, please tell me how to avoid it", then the answer may be:

http://www.boost.org/doc/libs/1_38_0/libs/utility/operators.htm

The syntax looks a little fiddly, though. As I've never used it myself, I can't reassure you that it's simple really.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.