作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个枚举,我只想将该枚举的一个对象递增一个位置。
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/
我是一名优秀的程序员,十分优秀!