gpt4 book ai didi

c++ - 如何在编译时循环一个元组?

转载 作者:太空狗 更新时间:2023-10-29 20:42:19 26 4
gpt4 key购买 nike

比如我有一个元组

tuple<int, float, char> t(0, 1.1, 'c');

和一个模板函数

template<class T> void foo(T e);

我想用函数循环元组元素,如何实现它,比如使用 boost::mpl::for_each 来实现以下?

template<class Tuple>
void loopFoo(Tuple t)
{
foo<std::tuple_element<0, Tuple>::type>(std::get<0>(t));
foo<std::tuple_element<1, Tuple>::type>(std::get<1>(t));
foo<std::tuple_element<2, Tuple>::type>(std::get<2>(t));
...
}

最佳答案

您可以像这样使用 boost::fusion::for_each:

#include <boost/fusion/algorithm/iteration/for_each.hpp>
#include <boost/fusion/adapted/std_tuple.hpp>

struct LoopFoo
{
template <typename T> // overload op() to deal with the types
void operator()(T const &t) const
{
/* do things to t */
}
};

int main()
{
auto t = std::make_tuple(0, 1.1, 'c');
LoopFoo looper;
boost::fusion::for_each(t, looper);
}

关于c++ - 如何在编译时循环一个元组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19074723/

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