vote up 0 vote down star

Just curious about how to overload them.

The opAssign operators are like addAssign(+=) and subAssign(-=).

"globally" means they are not overloaded as member functions, but just a operator act on operands

For these opAssign operators, they are binary operators.(they receive two operands) Therefore two parameters are needed.

I found no examples on the web.....

flag

2 Answers

vote up 7 vote down check

Here's a trivial example of defining operator+=:

struct Foo{
    int x;
};

Foo& operator+=(Foo& lhs, const Foo& rhs) {
    lhs.x += rhs.x;
    return lhs;
}
link|flag
6  
rhs should be passed by const reference since rhs isn't modified by the function. – Jon-Eric Oct 4 at 16:18
vote up 2 vote down

The assignment operator (=) is special in that it always needs to be a non-static member function as per "ยง13.5.3 Assignment" of the C++ standard.

An assignment operator shall be implemented by a non-static member function with exactly one parameter

The same is true for the function call operator and the subscript operator. Other "assignment" operators (+=, -=, *=, etc) can be free binary functions.

link|flag
ASFAIU Bossliaw was asking about the operators that combine assignment with some other operation (+= etc.), not about pure assignment (=). – sbi Oct 4 at 22:17

Your Answer

Get an OpenID
or

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