Can We Overload All Operators?

Almost all operators can be overloaded except a few. Following is the list of operators that cannot be overloaded. 

sizeof
typeid
Scope resolution (::)
Class member access operators (.(dot), .* (pointer to member operator))
Ternary or conditional (?:)

Operator Overloading in C++

in C++, Operator overloading is a compile-time polymorphism. It is an idea of giving special meaning to an existing operator in C++ without changing its original meaning.

In this article, we will further discuss about operator overloading in C++ with examples and see which operators we can or cannot overload in C++.

Similar Reads

C++ Operator Overloading

C++ has the ability to provide the operators with a special meaning for a data type, this ability is known as operator overloading. Operator overloading is a compile-time polymorphism. For example, we can overload an operator ‘+’ in a class like String so that we can concatenate two strings by just using +. Other example classes where arithmetic operators may be overloaded are Complex Numbers, Fractional Numbers, Big integers, etc....

Example of Operator Overloading in C++

...

Difference between Operator Functions and Normal Functions

C++ // C++ Program to Demonstrate // Operator Overloading #include using namespace std;   class Complex { private:     int real, imag;   public:     Complex(int r = 0, int i = 0)     {         real = r;         imag = i;     }       // This is automatically called when '+' is used with     // between two Complex objects     Complex operator+(Complex const& obj)     {         Complex res;         res.real = real + obj.real;         res.imag = imag + obj.imag;         return res;     }     void print() { cout << real << " + i" << imag << '\n'; } };   int main() {     Complex c1(10, 5), c2(2, 4);     Complex c3 = c1 + c2;     c3.print(); }...

Can We Overload All Operators?

...

Operators that can be Overloaded in C++

Operator functions are the same as normal functions. The only differences are, that the name of an operator function is always the operator keyword followed by the symbol of the operator, and operator functions are called when the corresponding operator is used....

Why can’t the above-stated operators be overloaded?

...

Important Points about Operator Overloading

Almost all operators can be overloaded except a few. Following is the list of operators that cannot be overloaded....