Обсуждения
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 голосов
8 ответовWhy use Operator overloading ?
2 голосов
4 ответовПомогите! Не понимаю задачу.
0 голосов
2 ответовOperator overloading
0 голосов
11 ответовWhat wrong in the format specifier?
0 голосов
2 ответовWhy do we need 2 constructors?
0 голосов
3 ответовPointer manipulation
2 голосов
4 ответовJava operator clarification.
0 голосов
2 ответовOperator Overloading<<
1 голос
3 ответовWhy it's not working?
1 голос
1 ответThe Example In Lesson
1 голос
2 ответовПомогите! Не понимаю задачу.
-1 голос
1 ответАктуальное сегодня
Ejercicio Pytho
0 Votes
Please rate my code from 1 to 10
2 Votes
Pig Latin
0 Votes
Square Roots
0 Votes
Uuu
1 Votes
How to start
0 Votes