天天看点

c++枚举enum

enum spec {red,orange,yellow,green,blue};

spec band =red;

cout << band;

这里结果会输出0;

可以对enum spec {red=1,orange=5,yellow=8,green=9,blue=100};进行赋值

说明:1、枚举可以作为变量类型(不常用)

           2、枚举主要用来定义符号常量,可以和switch连用

c++

继续阅读