Q&A Discussões
can anyone plz explain me this program step by step?#include <iostream>
using namespace std;
class MyClass {
public:
int var;
MyClass() { }
MyClass(int a)
: var(a) { }
MyClass operator+(MyClass &obj) {
MyClass res;
res.var= this->var+obj.var;
return res;
}
};
int main() {
MyClass obj1(12), obj2(55);
MyClass res = obj1+obj2;
cout << res.var;
}I am not getting the part inside operator+
0 Voto
8 RespostasOperator overloading
0 Voto
11 RespostasPointer manipulation
2 Votos
4 RespostasWhy it's not working?
1 Voto
1 RespostaThe Example In Lesson
1 Voto
2 RespostasQuente hoje
Fast coding (mobile)
1 Votes
..
1 Votes
DSA doubt
1 Votes
Coding help
2 Votes
Bridge pattern use case
0 Votes
Input errors (python)
1 Votes
Data structure using C
0 Votes
Without degree job
0 Votes