Tagged Questions

9
votes
5answers
251 views

Order of operator overload resolution involving temporaries

Consider the following minimal example: #include <iostream> using namespace std; class myostream : public ostream { public: myostream(ostream const &other) : ...
8
votes
2answers
307 views

Why are some operators in C++ only allowed to be overloaded as member functions?

The operators are = () [] -> ->* conversion operators These can be declared only as member functions. Any other operator function can be either a class member or a non-member function. What is the ...
6
votes
2answers
2k views

Operator overloading : member function vs. non-member function?

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 ...