Besides 'new', 'delete', '<<' & '>>' operators, what other operators can be overloaded in C++ outside of a class context?
|
1
|
|||||
|
|
|
The following operators (delimitted by space) can be overloaded as non-member functions:
The following have to be non-static member functions:
The following can not be overloaded:
conversion operators also have to be member functions. And just because it has a '=' in it does not mean it cannot be overloaded as a non-member operator. The following is well-formed:
And the prefix and postfix increment and decrement operators can indeed be defined as non-members:
Clause 13.5 in the Standard covers this. Hope this helps. |
||||
|
|
|
Operators that can be overloaded (comma used as delimiter):
Operators that can not be overloaded:
Operators where overloading function must be declared as a class method:
|
||||||||||||||
|
