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

发布于 2024-11-07 02:59:25 字数 129 浏览 2 评论 0原文

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

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

Let's say I have a boost::mpl::list< A, B, C ...>.

How do I access one of those types given an index value at runtime? Is it even possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城之時有危險 2024-11-14 02:59:26

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) );

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

you basically have to iterate over the entire list and introduce some sort of conditional:
eg:

struct F {
    void operator(T &t) {
        if (i_ == index) ...
        ++i;
    }
    int index = ...;
    int i_ = 0;
};
for_each< L >( F(index) );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文