C++
Programming and Technical
Okay, that tells me the operators I can override; which operators should I override?
Read Solution (Total 1)
-
- It is much simpler and quicker to just list the operators which cannot be overloaded.
The operators which cannot be overloaded are:
- the sizeof operator
- the dot operator
- the scope operator
- the ternary operator
All other C++ operators can be overloaded. - 6 years agoHelpfull: Yes(0) No(0)
C++ Other Question