摘要:
1:枚举里面的值是常量; 例如 enum color {red,orange,yellow};2:枚举列表中的常量默认为0,1,2等等 例如 enum color {red,orange,yellow}; 常量值默认为0,1,23: 枚举列表常量值是可以指定的,且指定值后的枚举值将递增 例如enum color {red,orange=10,yellow}; yellow=114: 在C语言中枚举可以递增 运算符++,而C++中需要强制转换定义为int再运算符++enum用法例子如下#include<stdio.h>#include<string.h>enumspect 阅读全文