why to use operator overloading
Answers were Sorted based on User's Feedback
Answer / chandra
to achieve synchronization with the normal languages like c.
for example int a=10,b=30,c;
c = a+b ;
the above operation is possible in c as well as c++.bcos
the variables declared are primitive types.
If u want to do same thing for user defined datatypes, i
can say objects, we have to overload the operators.
For ex:
Assume that u created one class
Class A
and u have created objects
A obj1(10),obj2(30),obj3;
and u want the add 2 objects and result must be stored in
another object.
then u have to overload the operator + for class A.
obj3 = obj1 + obj2 ;
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / rekha
Operator overloading means giving additional meaning to
existing operators
Operators are defined to perform some operation on
fundamental types .Operator cannot work with user defined
types like classes and struct.so concept of operator
overloading means allows defining the meaning of operator so
that the can be used for performing operations on user defined
types.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / r.ramakrishna
BY using the operator overloading we can the more than one
operator in single function.
| Is This Answer Correct ? | 4 Yes | 4 No |
What is the renewal class?
How do you achieve runtime polymorphism?
Can bst contain duplicates?
What does <> mean pseudocode?
20% of a 6 litre solution and 60% of 4 litre solution are mixed what the % of mixture of solution it is resulted into?
• What are the desirable attributes for memory managment?
what are three tenets of object orinted Systems?Why they call like that ? Please answer me. Advance thanks.
Tell me the scenario,Where we can use interfaces or Abstract class.And What is the difference between interfaces and abstract class?
Difference between new operator and operator new
What is namespace?
2. Give the different notations for the class.\
What language is oop?