Advertisements
Advertisements
Question
What are the rules for operator overloading?
Short Note
Solution
Following are some rules to be followed while implementing operator overloading.
- The precedence and associativity of an operator cannot be changed.
- No new operators can be created, only existing operators can be overloaded.
- Cannot redefine the meaning of an operator’s procedure. You cannot change how integers are added. Only additional functions can be to an operator.
- Overloaded operators cannot have default arguments.
- When binary operators are overloaded, the left-hand object must be an object of the relevant class.
shaalaa.com
Is there an error in this question or solution?