How can I overload operator++ in two different ways (for a++ and ++a)?
|
|
Should look like this:
|
|||||||||||
|
|
The difference lies in what signature you choose for your overload(s) of Cited from the relevant article on this subject in the C++ FAQ (go there for more details):
P.S.: When I found out about this, all I saw initially was the dummy parameter, but the different return types are actually more interesting; they might explain why |
||||
|
|
|
You have two ways to overload the two (prefix/postfix) ++ operators for a type T: Object method:This is the easiest way, using "common" OOP idiom.
Object non-member function:This is another way to do this: As long as the functions are in the same namespace as the object they are referring too, they will be considered when the compiler will search for a fonction to handle
It is important to remember that, from a C++ viewpoint (including a C++ compiler viewpoint), those non-member functions are still part of T's interface (as long as they are in the same namespace). There are too potential advantages of the non-member function notation:
|
|||
|
|
|
|
|||
|
|
|
Declare like so:
Implement properly - do not mess with what everyone knows they do (increment then use, use then increment). |
|||
|
|