Answer Posted / 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 |
Post New Answer View All Answers
What are properties in oop?
What is oops concept with example?
c++ program to swap the objects of two different classes
What is the difference between abstraction and polymorphism?
What is meant by multiple inheritance?
What is the real life example of polymorphism?
Why is abstraction needed?
What does I oop mean?
Which type does string inherit from?
Why is static class not inherited?
Why is oop better than procedural?
any one please tell me the purpose of operator overloading
what are the different types of qualifier in java?
What is oops?what is its use in software engineering?
What is polymorphism give a real life example?