Question from the C++ - Fundamentals test

The operator + has been defined for Complexe objects thanks to an intern overloading.

Medium

What is the correct statement for the following code ?

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());
}
Author: SamuelStatus: PublishedQuestion passed 228 times
Edit
1
Community Evaluations
developer avatar
Fafun
02/03/2024
Il y a deux réponses identiques