I read that an overloaded operator declared as member function is asymmetric because it can have only one parameter and the other parameter passed automatically is the 'this' pointer. So no standard exists to compare them. On the other hand, overloaded operator declared as a friend is symmetric because we pass two arguments of the same type and hence, they can be compared. My question is that when i can still compare a pointer's lvalue to a reference, why are friends preferred? (using an asymmetric version gives the same results as symmetric) Why do STL algorithms use only symmetric versions?
feedback
|
|
If you define your operator overloaded function as member function, then compiler translates expressions like But what if the first operand is not a class? There's a major problem if we want to overload an operator where the first operand is not a class type, rather say To solve this ordering problem, we define operator overloaded function as
Read these : | |||||||||||
feedback
|
|
It's not necessarily a distinction between One reason to prefer a global operator overload is if you want to allow expressions where the class type appears on the right hand side of a binary operator. For example:
This only works if there is a global operator overload for
Note that the global operator overload doesn't necessarily need to be a Regardless, if
...then we would only be able to have expressions where a | ||||
|
feedback
|