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

How do I start a c++ project?

589


Why cout is used in c++?

568


What is c++ course?

586


What does new return if there is insufficient memory to make your new object?

590


What is the extraction operator and what does it do?

614






Write a program to find the Factorial of a number

576


Is c++ primer good for beginners?

593


Explain how we implement exception handling in c++?

580


How to declaring variables in c++?

663


What are c++ templates used for?

621


What is function prototyping? What are its advantages?

595


What are the rules about using an underscore in a c++ identifier?

636


What are the advantages of using a pointer? Define the operators that can be used with a pointer.

606


How do you clear a buffer in c++?

543


How come you find out if a linked-list is a cycle or not?

573