Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C++

Operator overloading in C++

5.00/5 (4 votes)
28 Oct 2011CPOL 14.1K  
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:


License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)