17.1 Operator Overloading
Convenient shorthand
More intuitive:
a + b * c
vs.
plus(a, times(b, c))
C++ supports a rich set of operators
prev
|
top
|
next