+ 4
Operator overloading
Is operator overloading practical in in c++?
4 Answers
+ 7
Using an operator like + is always more concise than using a function name, so I guess it is practical.
+ 2
It definitely is. You'll find it in a lot of code you'll read. Operator overloading is one of the skills you should have a firm grasp of if you plan on really programming c++.
0
Yeah it is practical