我试图理解重载运算符,而且我一直盯着这个的时间比我想承认的要长。我相信我理解除了 operator+ 成员之外的类中的所有内容。我正在尝试用大量可用信息自学,但我找不到任何信息可以向我解释我在这里看到的东西——我坚信如果我了解某件事是如何工作的,那么我可以更好地使用它。
所以,主要是,我的困惑在于编译器如何知道选择哪个 temp 变量。(temp.x 或 temp.y)我意识到 main() 正在请求 cx 和 cy,但 operator+ 似乎正在返回尚未定义的内容。没有三元运算符或任何可以让它选择返回哪一个的东西。
#include <iostream>
using namespace std;
class CVector {
public:
int x,y;
CVector () {};
CVector (int,int);
CVector operator + (CVector);
};
CVector::CVector (int a, int b) {
x = a;
y = b;
}
CVector CVector::operator+ (CVector param) {
CVector temp;
temp.x = x + param.x;
temp.y = y + param.y;
return (temp);
}
int main () {
CVector a (3,1);
CVector b (1,2);
CVector c;
c = a + b;
cout << c.x << "," << c.y;
return 0;
}