enum 枚举类型默认值

enum value
{
    one,  //0
    two, //1
    three, //2
    four //3
};

默认值

原文地址:https://www.cnblogs.com/azbane/p/8658258.html