小甲鱼c语言的58枚举类型代码, 怎么会报错
本帖最后由 administrator. 于 2019-1-21 11:16 编辑#include<stdio.h>
int main()
{
enum boy{Tom,Danny,Gan,Lilei}month,j;
int i;
j=Tom;
for(i=1;i<=30;i++)
{
month=j;
j++;
if (j>Lilei)
{
j=Tom;
}
}
for(i=1;i<=30;i++)
{
switch(month)
{
case Tom:printf("%4d%s",i,"Tom"); break;
case Danny:printf("%4d%s",i,"Danny");break;
case Gan:printf("%4d%s",i,"Gan");break;
case Lilei:printf("%4d%s",i,"Lilei");break;
}
printf("\n");
}
return 0;
}
报错代码如下:--------------------Configuration: 123 - Win32 Debug--------------------
Compiling...
1.cpp
D:\c++exam\123\1.cpp(13) : error C2676: binary '++' : 'enum main::boy' does not define this operator or a conversion to a type acceptable to the predefined operator
Error executing cl.exe.
123.exe - 1 error(s), 0 warning(s)
administrator. 发表于 2019-1-21 11:13
报错代码如下:--------------------Configuration: 123 - Win32 Debug--------------------
Compiling... ...
.c 没有报错。
你存为.cpp的原因吧 ba21 发表于 2019-1-21 11:35
.c 没有报错。
你存为.cpp的原因吧
不是,是提示我j++错误啦,版主 administrator. 发表于 2019-1-21 11:46
不是,是提示我j++错误啦,版主
你用.c试了没有? 本帖最后由 Croper 于 2019-1-21 12:10 编辑
vs2017会报错
错误信息是你没有对枚举类型定义++运算,
两个解决方案,要不你把这个枚举类型转换成整数处理
...
month=j;
j=(boy)((int)j+1);
...
要不如果你是c++,可以自定义一个++运算enum boy { Tom, Danny, Gan, Lilei };//把boy定义到外面
boy operator++(boy& b, int)
{
boy temp = b;
b = (boy)((int)b + 1);
return temp;
}
另外,C里应该是不会报错的 ba21 发表于 2019-1-21 11:55
你用.c试了没有?
我试试
.c就正常,不知道为哈
页:
[1]