Exforsys

Home arrow Technical Training arrow C++ Tutorials

C++ Operator Overloading Part 1

Author: Sripriya R     Published on: 7th Sep 2006    |   Last Updated on: 25th Jul 2011

In this C++ tutorial you will learn about Operator Overloading in two Parts, In Part I of Operator Overloading you will learn about Unary Operators, Binary Operators and Operator Overloading - Unary operators.

Ads

Operator overloading is a very important feature of Object Oriented Programming. Curious to know why!!? It is because by using this facility programmer would be able to create new definitions to existing operators. In other words a single operator can take up several functions as desired by programmers depending on the argument taken by the operator by using the operator overloading facility.

After knowing about the feature of operator overloading now let us see how to define and use this concept of operator overloading in C++ programming language.

We have seen in previous sections the different types of operators. Broadly classifying operators are of two types namely:

  • Unary Operators
  • Binary Operators

Unary Operators:

As the name implies, it operates on only one operand. Some unary operators are named ++ also called the Increment operator, -- also called the Decrement Operator, ! , ~ are called unary minus.

Binary Operators:

The arithmetic operators, comparison operators, and arithmetic assignment operators all this which we have seen in previous section of operators come under this category.

Both the above classification of operators can be overloaded. So let us see in detail each of this.

Operator Overloading - Unary operators

As said before operator overloading helps the programmer to define a new functionality for the existing operator. This is done by using the keyword operator.

The general syntax for defining an operator overloading is as follows:

Sample Code
  1. return_type classname :: operator operator_symbol(argument)
  2. {
  3. ...
  4. statements;
  5. }
Copyright exforsys.com


Thus the above clearly specifies that operator overloading is defined as a member function by making use of the keyword operator.

In the above:

  • return_type - is the data type returned by the function
  • class name - is the name of the class
  • operator - is the keyword
  • operator symbol - is the symbol of the operator which is being overloaded or
  • defined for new functionality
  • :: - is the scope resolution operator which is used to use the function definition outside the class. The usage of this is clearly defined in our earlier section of How to define class members.

For example

Suppose we have a class say Exforsys and if the programmer wants to define a operator overloading for unary operator say ++, the function is defined as

Inside the class Exforsys the data type that is returned by the overloaded operator is defined as

Sample Code
  1. class Exforsys
  2. {
  3.     private:
  4.     ...
  5.     public:
  6.     void operator ++( );
  7.     ...
  8. };
Copyright exforsys.com


So the important steps involved in defining an operator overloading in case of unary operators are:

Inside the class the operator overloaded member function is defined with the return data type as member function or a friend function. The concept of friend function we will define in later sections. If in this case of unary operator overloading if the function is a member function then the number of arguments taken by the operator member function is none as seen in the below example. In case if the function defined for the operator overloading is a friend function which we will discuss in later section then it takes one argument.

The operator overloading is defined as member function outside the class using the scope resolution operator with the keyword operator as explained above

Now let us see how to use this overloaded operator member function in the program

Sample Code
  1. #include <iostream>
  2. using namespace std;
  3. class Exforsys
  4. {
  5. private:
  6.         int x;
  7. public:
  8.         Exforsys( ) { x=0; }       //Constructor
  9.         void display();
  10.         void operator ++( );
  11. };
  12.  
  13. void Exforsys :: display()
  14. {
  15.         cout << "nValue of x is: " << x;
  16. }
  17.  
  18. void Exforsys :: operator ++( )  //Operator Overloading for operator ++ defined
  19. {
  20.         ++x;
  21. }
  22.  
  23. void main( )
  24. {
  25.         Exforsys e1,e2;         //Object e1 and e2 created
  26.         cout << "Before Increment";
  27.         cout << "nObject e1: "; e1.display();
  28.         cout << "nObject e2: "; e2.display();
  29.         ++e1;  //Operator overloading applied
  30.         ++e2;  
  31.         cout << "n After Increment";
  32.         cout << "nObject e1: "; e1.display();
  33.         cout << "nObject e2: "; e2.display();
  34. }
Copyright exforsys.com


The output of the above program is:

In the above example we have created 2 objects e1 and e2 f class Exforsys. The operator ++ is overloaded and the function is defined outside the class Exforsys.

When the program starts the constructor Exforsys of the class Exforsys initialize the values as zero and so when the values are displayed for the objects e1 and e2 it is displayed as zero. When the object ++e1 and ++e2 is called the operator overloading function gets applied and thus value of x gets incremented for each object separately. So now when the values are displayed for objects e1 and e2 it is incremented once each and gets printed as one for each object e1 and e2.

Ads

This is how unary operators get overloaded. We will see in detail how to overload binary operators in next section.



 
 

Comments