最佳答案
在 C + + 中有没有一种模式可以从另一个枚举继承枚举?
差不多是这样:
enum eBase
{
one=1, two, three
};
enum eDerived: public eBase
{
four=4, five, six
};