1

我试图理解重载运算符,而且我一直盯着这个的时间比我想承认的要长。我相信我理解除了 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;
}
4

2 回答 2

3

所以,主要是,我的困惑在于编译器如何知道选择哪个 temp 变量。

我真的不明白你这是什么意思。编译器没有选择要返回的 temp 变量。 temp是一个类型的对象CVector。它包含两个数据成员xy. temp这些成员作为使用此行创建时的一部分存在:

CVector temp;

然后,当你这样做时:

return temp;

编译器没有什么可以选择的。它返回整个对象,其中包括 thexyin 一个复合对象。

在您的主要功能中,这一行:

c = a + b;

调用和。operator+_ 然后将返回值 ( ) 分配 ( ) 给。由于您尚未定义自定义赋值运算符,因此使用默认运算符,它只是从to进行成员分配。因此,被分配给,并且被分配给。abtempoperator=ctempctemp.xc.xtemp.yc.y

对于您的课程,如果将其写出,则默认赋值运算符看起来像(或具有相同的操作语义):

CVector & CVector::operator=(const CVector & rhs)
{
    this->x = rhs.x;
    this->y = rhs.y;
    return *this;
}
于 2013-10-08T02:44:10.360 回答
1

实现运算符(+)本质上只是一个实例方法。

temp.x = x + param.x;
temp.y = y + param.y;
return (temp);

这里它分配了 'x' 和 param.x 的 Instance 值之和。想象一下它被称为:

CVector a (3,1);
CVector b (1,2);
CVector c;
c = a.+(b);
于 2013-10-08T02:47:28.520 回答