gpt4 book ai didi

c++ - 我是否必须重载每个运算符才能让类的行为像它的成员变量之一?

转载 作者:可可西里 更新时间:2023-11-01 16:38:12 25 4
gpt4 key购买 nike

给定一个用户定义的类型,如下所示:

struct Word{
std::string word;
Widget widget;
};

有没有办法让类的每个重载运算符的行为都完全一样,就好像它只是一个字符串一样?或者我是否必须按以下方式实现该类:

struct Word{

bool operator < (Word const& lhs) const;
bool operator > (Word const& lhs) const;
bool operator <= (Word const& lhs) const;
bool operator => (Word const& lhs) const;
bool operator == (Word const& lhs) const;
bool operator != (Word const& lhs) const;
//etc...

std::string word;
Widget widget;
};

确保我考虑了字符串包含的每个重载操作,并将行为仅应用于字符串值。

最佳答案

我会说你最好的选择是使用 std::rel_ops 这样你只需要实现 ==<然后您将获得所有这些功能。这是来自 cppreference 的一个简单示例。

#include <iostream>
#include <utility>

struct Foo {
int n;
};

bool operator==(const Foo& lhs, const Foo& rhs)
{
return lhs.n == rhs.n;
}

bool operator<(const Foo& lhs, const Foo& rhs)
{
return lhs.n < rhs.n;
}

int main()
{
Foo f1 = {1};
Foo f2 = {2};
using namespace std::rel_ops;

std::cout << std::boolalpha;
std::cout << "not equal? : " << (f1 != f2) << '\n';
std::cout << "greater? : " << (f1 > f2) << '\n';
std::cout << "less equal? : " << (f1 <= f2) << '\n';
std::cout << "greater equal? : " << (f1 >= f2) << '\n';
}

如果您需要此类内容的更完整版本,请使用 <boost/operators.hpp>

关于c++ - 我是否必须重载每个运算符才能让类的行为像它的成员变量之一?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20321155/

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