65.9K
CodeProject is changing. Read more.
Home

Operator overloading in C++

starIconstarIconstarIconstarIconstarIcon

5.00/5 (4 votes)

Oct 28, 2011

CPOL
viewsIcon

14070

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: