状态机, 枚举(enum)

←C++ 强枚举 |← 返回MOC

// 优雅的做法
typedef enum {
    STATE_IDLE,
    STATE_RUNNING,
    STATE_ERROR
} SystemState;
SystemState currentState = STATE_IDLE;