enum EValue { KZero, KOne, KTwo }; const char* ToString(EValue value) { static char *table[] = { "Zero", "One", "Two" }; return ...
確定! 回上一頁