Easy
What does the following code return ?
class Complex {
public:
Complex(double x, double y) : x(x), y(y) {}
double getX() const {return x;}
double getY() const {return y;}
Complex operator+(Complex z2);
private:
double x;
double y;
};
Complex Complex::operator+(Complex z2) {
return Complex(x+z2.getX(), y+z2.getY());
}
int main() {
Complex z1(1, 1);
Complex z2(2, 2);
Complex z3 = z1+z2;
cout << z1.getX() << ',' << z1.getY() << endl;
cout << z2.getX() << ',' << z2.getY() << endl;
cout << z3.getX() << ',' << z3.getY() << endl;
return 0;
}
Author: SamuelStatus: PublishedQuestion passed 264 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about C++
4
Write a C++ class with a constructor that takes two arguments.3
Which statement concerning constructors is false ?2
How to distinguish a parameter of a method from an attribute of the class in C++2
Which type should you use to represent a data list with a length that can change ?1
The operator + has been defined for Complexe objects thanks to an intern overloading.