Giving new meaning to existing operators - Operator overloading
Q. What does operator overloading mean?
- Published on 16 Jun 15a. making new c++ operators
b. giving new meaning to existing c++ operators
c. giving c++ more than what they can handle
d. making c++ work with objects
ANSWER: giving new meaning to existing c++ operators
An overloaded declaration is a declaration that had been declared with the same name as a previously declared declaration in the same scope, except that both declarations have different arguments and obviously different definition (implementation).