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 is inheritance and how many types of inheritance?
What is encapsulation example?
Is this job good for future? can do this job post grduate student?
What is pointer in oop?
What are oops methods?
when to use 'mutable' keyword and when to use 'const cast' in c++
How do you achieve runtime polymorphism?
Why do while loop is used?
What is oops and why we use oops?
Why it is called runtime polymorphism?
Why is abstraction used?
What is difference between oop and pop?
What are functions in oop?
What is difference between pop and oop?
What is abstraction in oop with example?