Operator overloading in C++ is a form of polymorphism that allows developers to provide a custom implementation for the functionality of an operator relative to their class objects. This can include arithmetic operations like addition and subtraction, comparison, assignment, and stream insertion and extraction among others. Overloading an operator does not change its original syntax, precedence, or associativity; rather, it simply adds a new context in which the operator can operate.
For example, if we have a class
Length
representing a measurement of distance, we may want to compare two Length objects using the standard
==
operator, or print them using the
<<
operator. Overloading allows these operators to understand how to handle the custom
Length
class like they would handle built-in types such as
int
or
double
.
- It enhances the expressiveness of the language.
- Helps to perform operations relevant to user-defined types.
- Gives the ability to use operators with different operands.