The answer to this question seems to escape me, but how do you go about overloading with non-member functions. Do you just create a program level function and where ever the prototype (or definition) exists the operator is overloaded for that class type?
|
feedback
|
|
With a member function, A good example is the
Here, As for "where", the operator must be defined where you use it. Generally, put them at the same place as the type you're overloading the operators for. EDIT: For non trivial operators (arithmetic operations on primitive types), operators are syntactic sugar for function calls. When you do this:
It's like writing that:
But more readable. For member operators, the left parameter will be | |||||||||||
feedback
|