gpt4 book ai didi

c++ - 枚举增量的运算符重载

转载 作者:行者123 更新时间:2023-11-28 05:02:28 25 4
gpt4 key购买 nike

我有这个枚举,我只想将该枚举的一个对象递增一个位置。

enum Month {
january = 1,
february,
march,
april,
may,
june,
july,
august,
september,
october,
november,
december
};

对于我的枚举对象 Month m,我只想将对象的变量移动一个位置。

Month operator++(Month &m) {
m = static_cast<Month>(m + 1);
return m;
}

使用 Month &m 作为参数时,我收到错误提示,它需要将 int 作为参数。因此,如果我执行“(Month &m, int)”,它会说它“必须采用零个或一个参数”。我读到如果你的运算符重载是一个成员函数,你不需要 Month &m,所以我删除了它。之后,我又收到另一个错误:“不匹配‘operator++’(操作数类型为‘Month’)”。有什么我想念的吗?

主要代码:

class Date {
int y, d, month_end; // private
Month m;

public:
Date(int yy, Month mm, int dd)
: y(yy), d(dd), m(mm) {
}

Month& operator++(Month &m) {
m = static_cast<Month>(m + 1);
return m;
}

void add_month() {
++m;
}

最佳答案

在评论中,您说:

Is there something I'm overlooking? http://ideone.com/uOkSk0

是的。您在一个不寻常的地方定义函数——在 Date 的定义中。它必须是非成员函数。

使用命名空间标准;

enum Month {
january = 1,
february,
march,
april,
may,
june,
july,
august,
september,
october,
november,
december
};

Month& operator++(Month &m) {
m = static_cast<Month>(m + 1);
return m;
}

class Date {
int y, d;
Month m;

public:
Date(int yy, Month mm, int dd) // constructor
: y(yy), d(dd), m(mm) { // member initializer
}


void add_month() {
++m;
}
};

int main()
{
Month m = january;
++m;

关于c++ - 枚举增量的运算符重载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45580760/

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