Write an operator overloading program to write S3+=S2.
Answers were Sorted based on User's Feedback
Answer / som shekhar
class A
{
int id;
public:
A& operator +(const A& a1)
{
A a;
a.id = id + a1.id;
return a;
}
A & operator =(const A& a1)
{
if( this == &a1)
return;
else
{
A a;
a.id = a1.id;
return a;
}
}
};
S3 += S2 internaly will be called as
S3->operator=(s3->operator+(s2));
In this case first + operator will be called and then
assignment operator will be called.
Is This Answer Correct ? | 0 Yes | 1 No |
write a short note on Overloading of Binary Operator?
what type of question are asked in thoughtworks pair programming round ?
Program to check whether a word is the first word of the sentence.
what is the application of oops?
What is overloading in oop?
Hi All, I am new to programming and want to know how can i write a code to take input of 2 numbers from user and swap it without using a temp variable?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
define oops concept with example
function overridind means and simple program
What is difference between data abstraction and encapsulation?
difference between class and object
10 Answers Chandan, IBM, Magic Soft,
Can a varargs method be overloaded?