Difference between Operator overloading and Functional
overloading?
Answer Posted / jknjkjk
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 ? | 13 Yes | 16 No |
Post New Answer View All Answers
Is c++ faster than c?
What does extern mean in a function declaration in c++?
Why struct is used in c++?
Is java a c++?
What is the main purpose of overloading operators?
Is map thread safe c++?
Difference between pointer to constant vs. Pointer constant
How can virtual functions in c++ be implemented?
What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required
Write a program to find the Fibonacci series recursively.
Is overriding possible in c++?
What is the difference between the indirection operator and the address of oper-ator?
What is a driver program?
What is a volatile variable in c++?
Does improper inheritance have a potential to wreck a project?