Difference between Operator overloading and Functional
overloading?

Answer Posted / rajkumar tyagi

Function overloading is like you have different functions
with the same name but different signatures working
differently. So, the compiler can differentiate and find
out which function to call depending on the context. In
case of operator overloading, you try to create your own
functions which are called when the corresponding operator
is invoked for the operands.

One important thing to understand is that you can create as
many functions as you want with the same name and sifferent
signatures so that they can work diffrently but for a
particular class, you cannot overload the operator function
based on number of arguments. There is a fundamental reason
behind this.

According to the rules, you can not create your own
operators but you have to use already available operators.
Another thing is since the operator are already defined for
use with buily-in types you can not change their
charecteristics. For example the binary operator '+' always
takes two parameters, so for this you cannot create a
function that takes three parameters. But you can always
overload them based on the type of the parameters.

Is This Answer Correct ?    24 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can the creation of operator** is allowed to perform the to-the-power-of operations?

570


Can we overload operator in c++?

543


Can a list of string be stored within a two dimensional array?

563


How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?

548


Differentiate between a template class and class template in c++?

621






How do I start a c++ project?

579


What is the use of turbo c++?

545


How the programmer of a class should decide whether to declare member function or a friend function?

673


How to demonstrate the use of a variable?

631


How do I make turbo c++ full screen?

577


What is general form of pure virtual function? Explain?

504


What is c++ stringstream?

595


write a function signature with various number of parameters.

555


What's c++ used for?

587


Difference between class and structure.

702