gpt4 book ai didi

c++ - 如何获取相对于运行时索引的类型?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:58:35 25 4
gpt4 key购买 nike

假设我有一个 boost::mpl::list< A, B, C ...> .

如何在运行时给定索引值访问这些类型之一?有可能吗?

最佳答案

http://www.boost.org/doc/libs/release/libs/mpl/doc/refmanual/for-each.html

你基本上必须遍历整个列表并引入某种条件:例如:

struct F {
void operator(T &t) {
if (i_ == index) ...
++i;
}
int index = ...;
int i_ = 0;
};
for_each< L >( F(index) );

关于c++ - 如何获取相对于运行时索引的类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5996278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com