本文介绍了遍历结构变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想获得一个迭代器,以根据枚举 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::变种.
这篇关于遍历结构变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!