1.基本用法
1.1定义enum color{red,yellow,blue};
也可以在定义的时候设定其序值
如enum color{red=7,yellow=3,yellow}
未标明序值的默认前面+1
color hhh=yellow;
int i=hhh;相当于把4赋值给hhh
但是枚举类型的不能赋常量
enum枚举类型
最新推荐文章于 2022-10-05 16:06:31 发布
1.基本用法
1.1定义enum color{red,yellow,blue};
也可以在定义的时候设定其序值
如enum color{red=7,yellow=3,yellow}
未标明序值的默认前面+1
color hhh=yellow;
int i=hhh;相当于把4赋值给hhh
但是枚举类型的不能赋常量