×

Binary Operator Overloading in C++

The Binary Operator Overloading in the C++ programming language will be covered in this part. An operator which comprises two operands to execute a mathematical operation is termed the Binary Operator Overloading. A single operator may carry out a variety of capabilities using two operands provided by the programmer or user in this polymorphic compile approach. There are various binary operators like +, -, *, /, etc., that may directly alter or overload the object of a class.

As an illustration, let's say the binary ( + ) operator is overloaded and we have the digits 5 and 6. The result of the binary ( + ) operator's addition of the digits 5 and 6 is 11. Additionally, we may utilize the binary operator for a variety of computations by performing subtraction, multiplication, and division operations.

return_type :: operator binary_operator_symbol (arg)  //syntaxn
{  
// function definition  
}

How to Use a Binary Overload to Calculate the Sum of Two Complex Numbers

  • Start the program with step one.
  • Declare the class in step two.
  • Declare the variables and their member functions in step three.
  • Utilize the user-defined inp ( ) function in step 4 to take two integers.
  • Sixth step: Define the binary (-) operator to subtract two values in a similar manner.
  • To show the entered numbers, use the print () method.
  • Declare the class objects x1, y1, sum, and sub in step eight.
  • Use the x1 and y1 objects to run the print () method.
  • Next, use the "+" and "-" operators to add and subtract the objects to obtain the object sum and sub result.
  • Finally, use the x1, y1, sum, and sub to call the print () and print2 () functions.
  • Showcase the complicated numbers' addition and subtraction.
  • Put an end to the program.

Example 1: A program that adds and subtracts two complex integers using the (+) and (-) operators in binary.

/* use binary (+) operator to add two complex numbers. */  
#include < iostream >
#include < stdlib >
#include < stdio >
#include < bits/stdc++.h >
using namespace std ;  
class Complex_num  
{  
    // declare data member or variables  
    int x , y ;  
    public:  
        // create a member function to take input  
        void inp ( )  
        {  
            cout << " Input two complex number: " << endl ;  
            cin >> x >> y ;  
        }         
        // use binary '+' operator to overload  
        Complex_num operator + ( Complex_num obj )  
        {  
            // create an object  
            Complex_num A ;  
            // assign values to object  
            A.x = x + obj.x ;  
            A.y = y + obj.y ;  
            return ( A ) ;  
        }         
        // overload the binary ( - ) operator  
        Complex_num operator - ( Complex_num obj )  
        {  
            // create an object  
            Complex_num A ;  
            // assign values to object  
            A.x = x - obj.x ;  
            A.y = y - obj.y ;  
            return ( A ) ;  
        }         
        // display the result of addition  
        void print ( )  
        {  
            cout << x << " + " << y << "i" << "\n" ;  
        }  
          
        // display the result of subtraction  
        void print2 ( )  
        {  
            cout << x << " - " << y << "i" << "\n" ;  
        }  
} ;  
int main ( )  
{  
Complex_num x1 , y1 , sum , sub ; // here we created object of class Addition i.e x1 and y1   
    // accepting the values  
    x1.inp ( ) ;  
    y1.inp ( ) ;     
    // add the objects  
    sum = x1 + y1 ;  
    sub = x1 - y1 ; // subtract the complex number     
    // display user entered values  
    cout << "\n entered values are: \n" ;  
    cout << " \t" ;  
    x1.print ( ) ;  
    cout << " \t" ;  
    y1.print ( ) ;   
    cout << "\n The addition of two complex ( real and imaginary ) numbers: " ;  
    sum.print ( ) ; // call print function to display the result of addition     
    cout << "\n The subtraction of two complex ( real and imaginary ) numbers: " ;  
    sub.print2 ( ) ; // call print2 function to display the result of subtraction  
    return 0 ;  
}  

OUTPUT:

Input two complex numbers:
5
7
Input two complex numbers:
3
5
entered values are:
	5 + 7 i
	3 + 5 i
The addition of two complex ( real and imaginary ) numbers: 8 + 12 i
The subtraction of two complex ( real and imaginary ) numbers: 2 - 2 i 
......................................................................
Process executed in 2.22 seconds
Press any key to continue.

Explanation

In the program above, we accept two values from the user and then overload the "+" and "-" operators to add and subtract two complex numbers in a class using the binary operator.

Example 2: Overloading the binary operator in a program to add two values.

/* use binary ( + ) operator to perform the addition of two numbers. */  
#include < iostream > 
#include < stdio >
#include < stdlib >
#include < bits/stdc++.h > 
using namespace std ;  
class Arith_num  
{  
    // declare data member or variable  
    int x , y ;  
    public:  
        // create a member function to take input  
        void input ( )  
        {  
            cout << " enter the first number: " ;  
            cin >> x ;  
        }         
        void input2 ( )  
        {  
            cout << " enter the second number: " ;  
            cin >> y ;  
        }     
        // overloading the binary ' + ' operator to add number  
        Arith_num operator + ( Arith_num & ob )  
        {  
            // create an object  
            Arith_num A ;  
            // assign values to object  
            A.x = x + ob.x ;  
            return ( A ) ;  
        }         
        // display the result of binary + operator  
        void print ( )  
        {  
            cout << "The sum of two numbers is: " << x ;  
        }         
} ;  
int main ( )  
{  
   Arith_num x1 , y1 , res ; // here we create object of the class Arith_num i.e x1 and y1   
    // accepting the values  
    x1.input ( ) ;  
    y1.input ( ) ;   
    // assign result of x1 and x2 to res  
    res = x1 + y1 ;    
    // call the print ( ) function to display the results  
    res.print ( ) ;      
    return 0 ;     
}  

OUTPUT:

enter the first number: 5
enter the second number: 6
The sum of two numbers is: 11 
.............................
Process executed in 2.11 seconds
Press any key to continue.

Explanation

In the program above, we take the user's input of two integers - 5 and 6 - and overload the binary plus (+) operator to do the addition, which yields the result that two numbers, added together equal 11.

Example 3: A program that overloads numerous binary operators to produce an arithmetic operation:

/* use binary operator to perform the arithmetic operations in C++. */  
#include < iostream >  
#include < bits/stdc++.h >
#include < stdlib >
#include < stdio >
using namespace std ;  
class Arith_num  
{  
    // declare data member or variable  
    int num ;  
    public:  
        // create a member function to take input  
        void input ( )  
        {  
            num = 20 ; //define value to num variable  
        }  
        // use binary ' + ' operator to add number  
        Arith_num operator + ( Arith_num & ob )  
        {  
            // create an object  
            Arith_num A ;  
            // assign values to object  
            A.num = num + ob.num ;  
            return ( A ) ;   
        }  
        // overload the binary ( - ) operator  
        Arith_num operator - ( Arith_num & ob )  
        {  
            // create an object  
            Arith_num A ;  
            // assign values to object  
            A.num = num - ob.num ;  
            return ( A ) ;  
        }     
        // overload the binary ( * ) operator  
        Arith_num operator * ( Arith_num & ob )  
        {  
            // create an object  
            Arith_num A ;  
            // assign values to object  
            A.num = num * ob.num ;  
            return ( A ) ;  
        }         
        // overload the binary ( / ) operator  
        Arith_num operator / ( Arith_num & ob )  
        {  
            // create an object  
            Arith_num A ;  
            // assign values to object  
            A.num = num / ob.num ;  
            return ( A ) ;  
        }         
        // display the result of arithmetic operators  
        void print ( )  
        {  
            cout << num ;  
        }         
} ;  
int main ( )  
{  
    Arith_num x1 , y1 , res ; // here we created object of class Addition i.e x1 and y1      
    // accepting the values  
    x1.input ( ) ;  
    y1.input ( ) ;   
    // assign result of x1 and x2 to res  
    res = x1 + y1 ;  
    cout << " Addition : " ;  
    res.print ( ) ;      
    // assign the results of subtraction to res  
    res = x1 - y1 ; // subtract the complex number  
    cout << " \n \n Subtraction : " ;  
    res.print ( ) ;      
    // assign the multiplication result to res  
    res = x1 * y1 ;  
    cout << " \n \n Multiplication : " ;  
    res.print ( ) ;      
    // assign the division results to res  
    res = x1 / y1 ;  
    cout << " \n \n Division : " ;  
    res.print ( ) ;  
    return 0 ;     
}  

OUTPUT:

Addition : 40
Subtraction : 0
Multiplication : 400
Division : 1  
....................
Process execute din 1.22 seconds
Press any key to continue.

Explanation:

The binary plus ( + ), minus ( - ), multiplication ( * ), and division ( / ) operators are overloaded in the program above to execute the different arithmetic operations in the Arith_num class. We declare that the value of variable num is 20, and after that, we print out the number as 20.


Related Topics

Containership in C++

In C++, it is possible to create an object in one class into another class, and that object is a member of another class. This relationship is known as a...

4 minutes read.

Precision of floating point numbers Using these functions floor(), ceil(), trunc(), round() and setprecision() in C++

Precision of floating point numbers Using these functions floor(), ceil(), trunc(), round() and setprecision() in C++ 1/2 decimal equal is 0.555555555555555555555 .... An indefinite number of lengths will require the storage...

4 minutes read.

Single level Inheritance

Inheritance is a fundamental element of C++’s Object-Oriented Programming (OOP). It allows a class (called the derived class) to inherit characteristics and attributes from another class (called the base class)....

5 minutes read.

Initialize Vector in C++

Initialize Vector in C++  The following comparison operators are defined for vector and those are given below. ==, <, <=, !=, >,>=  This allows you to access the element of a vector using...

3 minutes read.

Top best IDEs for C/C++ Developers in 2024

Nothing in the current digital world is conceivable without programming. Everything needs programming, from the cell phones in our pockets to self-driving cars. Programming is also necessary for the mouse...

9 minutes read.

C++ Program to find largest subarray with 0 sum

Write a program to find the largest subarray that has a sum zero. The array contains positive and negative numbers. Print the length of the max subarray whose sum turns...

4 minutes read.

C++ Bitset

Overview In C++, bitset represents a fixed-sequence of some bits values by either 0 and 1. Zero represents the value as false or unset, while 1 represents the value as true...

4 minutes read.

C++ vs C#

What exactly is C++ programming? Bjorne Stroustrup is the creator of the C++ programming language. His goal was to create a powerful object-oriented programming language with the capabilities of C. It...

4 minutes read.

How to Handle Divide by Zero Exception in C++

If you are a programmer or interested in coding then it is obvious that you face some illogical test cases. Suppose, you have written one program that calculates the factorial...

6 minutes read.

For Loop Examples in C++

For Loop A for loop is a repetitive control structure that allows you to create a loop to execute a specific number of times efficiently. The syntax of for loop In C++, a...

6 minutes read.

C++ Algorithms

There are plenty of programming paradigms that are closely associated with the implementations of code and simulate them into a proper functional one. This is done with the help of...

5 minutes read.

Function overloading in C++

Function overloading in C++ As we know that C++ works on the OOP Concepts, that are abstraction, encapsulation, and data hiding, it also uses the other important feature of OOP, which...

8 minutes read.

C++ Program to move all zeros to the end of the array

Write a program to move all the zeros in the arr[] to the end. The order of the non-zero elements should not be altered and all the zeros should be...

3 minutes read.

Naming Convention in C++

The first and most fundamental step a programmer takes to produce clean code is to name a file or a variable. This naming must be acceptable so that it serves...

5 minutes read.

C++ Call by Reference

Call by Reference is a C++ method for passing arguments to a function that enables us to pass the actual memory address of the parameter rather than a copy of...

4 minutes read.

C++ Program to Print Fibonacci Triangle

Fibonacci Triangle Program in CPP Definition: Fibonacci Triangle as the name suggests is the same as the Fibonacci number series where the next element is the sum of the previous two elements....

3 minutes read.

C++ | C Plus Plus While loop

In this article, we will discuss the C++ while loop with its syntax, use, key features, key points, pseudo code, and examples. What is the While Loop? The “while loop” is a...

4 minutes read.

getline() Function and Character Array in C++

In this article, we will explore about some concepts on getline() function and character array in the most useful language C++. The getline() method in C++ is simply a standard library...

6 minutes read.

Functions in C++ with Types and Examples

A function is a collection of statements that work together to complete a certain goal. It could consist of statements that execute repetitive operations or statements that conduct specialized jobs...

10 minutes read.

Lexicographically Next Permutation in C++

In this tutorial, we'll look at how to use C++ to generate the lexicographically next permutation of a string. The lexicographically next permutation is the larger permutation. "ACB," for example,...

3 minutes read.