C 枚举类型

typedef enum
{
    SexMal,
    SexFemal
} Sex;

typedef struct
{
    int year;
    int month;
    int date;
} Date;

区别 枚举中间用逗号隔开, 最后没有符号
结构体 中间用分号隔开

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章