gpt4 book ai didi

c++ - 为什么在 C++ 中重载运算符时不需要范围解析 (::)?

转载 作者:太空狗 更新时间:2023-10-29 19:48:31 25 4
gpt4 key购买 nike

通常当您在类声明中声明一个方法,并在外部定义它时,您需要指定它的作用域。

自从我读到运算符几乎都是常规方法后,我发现很难理解以下行为:

class A
{
public:
A(int x)
{ this->x = x;}
int foo();
friend const A operator+ (const A& left,const int right);

private:
int x;
};

const A operator+ (const A& left,const int right) //can't be A::operator+
{
return A(left.x + right);
}

int A::foo() // A:: is needed here
{
return 5;
}

int main(int argc, char **argv) {
A a(1);
a = a + 4;
a.operator =(a+5);
a.foo();
}

为什么我们不需要指定我们正在定义\重载的“operator+”?是从操作数推断出来的吗?

最佳答案

因为operator+是一个自由函数,与A类完全无关。碰巧它的一个参数属于 A 类。

这意味着它与 A::operator+ 不同,后者将被定义为:

class A {
public:
const A operator+(const int);
};

在您的代码示例中,您正在为该类定义一个 friend 函数。因此,自由函数 现在可以访问该类的私有(private)和 protected 部分。如果您不定义它 (operator+),friend 将只能访问 A 的公共(public)成员。这就是为什么你要让它成为 friend

关于c++ - 为什么在 C++ 中重载运算符时不需要范围解析 (::)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22847787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com