Operator overloading in C++





5.00/5 (4 votes)
The original solution has many flaws. Arguments and return types are not what they should be in most cases (by value vs. by reference and also for the constness). No code reuse and also some operators are not doing what would be intuitive like the unary minus.Information here is much more...
The original solution has many flaws. Arguments and return types are not what they should be in most cases (by value vs. by reference and also for the constness). No code reuse and also some operators are not doing what would be intuitive like the unary minus.
Information here is much more useful and exact:
- http://www.cs.caltech.edu/courses/cs11/material/cpp/donnie/cpp-ops.html[^]
- This article also explains it much more correctly: http://en.wikibooks.org/wiki/C++_Programming/Operators/Operator_Overloading[^]