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
How does work in c++?
What is a linked list in c++?
What is a rooted hierarchy?
Can you pass an array to a function in c++?
Can we run c program in turbo c++?
What is the difference between global variables and local variable
How to tokenize a string in c++?
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
What is a node class in c++?
Explain linked list using c++ with an example?
What are protected members in c++?
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
How are the features of c++ different from c?
How does com provide language transparency?
How do you print a string on the printer?