Difference between Operator overloading and Functional
overloading?

Answer Posted / swetcha

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 ?    115 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is ca high or low level language?

577


Is c++ a good beginners programming language?

576


What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass

671


What is :: operator in c++?

569


What is a modifier in c++?

625






How can you link a c++ program to c functions?

613


What is oop in c++?

591


Why do you use the namespace feature?

636


Explain stack unwinding.

626


What is a hash function c++?

546


What is a tree in c++?

557


What is a .lib file in c++?

558


What is late binding c++?

534


What is a flag in c++?

601


You run a shell on unix system. How would you tell which shell are you running?

645