枚举类型enum

enum direction{east,west,south,north};

enum direction myDirection;

等价于:

enum {east,west,south,north} myDirection;//定义了一个(未命名)枚举数据类型,它包含的值为east,west,south,north,同时还声明了该类型的变量direction。

posted @ 2012-12-21 11:03  gagag  阅读(145)  评论(0编辑  收藏  举报