如何“全局”重载 opAssign 运算符在 C++

发布于 2024-08-07 05:50:22 字数 198 浏览 5 评论 0原文

只是好奇如何让它们超载。

opAssign 运算符类似于 addAssign(+=) 和 subAssign(-=)。

“全局”意味着它们不重载为成员函数,而只是作用于操作数的运算符

对于这些 opAssign 运算符,它们是二元运算符。(它们接收两个操作数) 因此需要两个参数。

我在网上找不到例子......

Just curious about how to overload them.

The opAssign operators are like addAssign(+=) and subAssign(-=).

"globally" means they are not overloaded as member functions, but just a operator act on operands

For these opAssign operators, they are binary operators.(they receive two operands)
Therefore two parameters are needed.

I found no examples on the web.....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

£冰雨忧蓝° 2024-08-14 05:50:22

下面是定义 operator+= 的简单示例:

struct Foo{
    int x;
};

Foo& operator+=(Foo& lhs, const Foo& rhs) {
    lhs.x += rhs.x;
    return lhs;
}

Here's a trivial example of defining operator+=:

struct Foo{
    int x;
};

Foo& operator+=(Foo& lhs, const Foo& rhs) {
    lhs.x += rhs.x;
    return lhs;
}
初相遇 2024-08-14 05:50:22

赋值运算符 (=) 的特殊之处在于,根据 C++ 标准的“§13.5.3 赋值”,它始终必须是非静态成员函数。

赋值运算符应由只有一个参数的非静态成员函数来实现

函数调用运算符和下标运算符也是如此。其他“赋值”运算符(+=、-=、*= 等)可以是自由的二元函数。

The assignment operator (=) is special in that it always needs to be a non-static member function as per "§13.5.3 Assignment" of the C++ standard.

An assignment operator shall be implemented by a non-static member function with exactly one parameter

The same is true for the function call operator and the subscript operator. Other "assignment" operators (+=, -=, *=, etc) can be free binary functions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文