遍历结构变量

2022-01-10 00:00:00 iterator c++

我想获得一个迭代器,以根据枚举 ID 在运行时设置一个特定的结构变量.例如 -

I want to get an iterator to struct variable to set a particular one on runtime according to enum ID. for example -

struct {
char _char;
int _int;
char* pchar;
};

enum {
_CHAR, //0
_INT,  //1
PCHAR  //2
};

int main()
{
    int i = 1; //_INT
    //if i = 1 then set variable _int of struct to some value.
}

你可以在没有 if/else 或 switch case 语句的情况下做到这一点吗?

can you do that without if/else or switch case statements?

推荐答案

不,C++ 不直接支持这个.

No, C++ doesn't support this directly.

但是,您可以使用 boost 做一些非常相似的事情::元组:

enum {
CHAR, //0
INT,  //1
DBL   //2
};

tuple<char, int, double> t('b', 1, 3.14);

int i = get<INT>(t);  // or t.get<INT>()

您可能还想看看 boost::变种.

相关文章