模板元组-在每个元素上调用一个函数

Template tuple - calling a function on each element

本文关键字:调用 函数 一个 元素 元组      更新时间:2023-10-16

我的问题在代码中:

template<typename... Ts>
struct TupleOfVectors {
  std::tuple<std::vector<Ts>...> tuple;
  void do_something_to_each_vec() {
    //Question: I want to do this:
    //  "for each (N)": do_something_to_vec<N>()
    //How?
  }
  template<size_t N>
  void do_something_to_vec() {
    auto &vec = std::get<N>(tuple);
    //do something to vec
  }
};

使用一些索引机制可以很容易地做到这一点。给定一个元函数gen_seq,用于生成编译时整数序列(由seq类模板封装):

namespace detail
{
    template<int... Is>
    struct seq { };
    template<int N, int... Is>
    struct gen_seq : gen_seq<N - 1, N - 1, Is...> { };
    template<int... Is>
    struct gen_seq<0, Is...> : seq<Is...> { };
}

和以下函数模板:

#include <tuple>
namespace detail
{
    template<typename T, typename F, int... Is>
    void for_each(T&& t, F f, seq<Is...>)
    {
        auto l = { (f(std::get<Is>(t)), 0)... };
    }
}
template<typename... Ts, typename F>
void for_each_in_tuple(std::tuple<Ts...> const& t, F f)
{
    detail::for_each(t, f, detail::gen_seq<sizeof...(Ts)>());
}

可以这样使用上面的for_each_in_tuple函数:

#include <string>
#include <iostream>
struct my_functor
{
    template<typename T>
    void operator () (T&& t)
    {
        std::cout << t << std::endl;
    }
};
int main()
{
    std::tuple<int, double, std::string> t(42, 3.14, "Hello World!");
    for_each_in_tuple(t, my_functor());
}

生活例子

在你的具体情况中,你可以这样使用它:

template<typename... Ts>
struct TupleOfVectors
{
    std::tuple<std::vector<Ts>...> t;
    void do_something_to_each_vec()
    {
        for_each_in_tuple(t, tuple_vector_functor());
    }
    struct tuple_vector_functor
    {
        template<typename T>
        void operator () (T const &v)
        {
            // Do something on the argument vector...
        }
    };
};

再一次,这里有一个的实例

如果你正在使用 c++ 14或更高版本,你可以用std::integer_sequence替换上面的seqgen_seq类,如下所示:

namespace detail
{
    template<typename T, typename F, int... Is>
    void
    for_each(T&& t, F f, std::integer_sequence<int, Is...>)
    {
        auto l = { (f(std::get<Is>(t)), 0)... };
    }
} // namespace detail
template<typename... Ts, typename F>
void
for_each_in_tuple(std::tuple<Ts...> const& t, F f)
{
    detail::for_each(t, f, std::make_integer_sequence<int, sizeof...(Ts)>());
}

如果您正在使用 c++ 17或更高版本,您可以这样做(从下面的注释中):

std::apply([](auto ...x){std::make_tuple(some_function(x)...);} , the_tuple);

在c++ 17中可以这样做:

std::apply([](auto ...x){std::make_tuple(some_function(x)...);} , the_tuple);

假设some_function对元组中的所有类型都有适当的重载。

在clang++ 3.9中已经可以使用std::experimental::apply

除了@M的答案。如果你需要按元组元素在元组中的出现顺序调用函数,在c++ 17中你也可以使用这样的折叠表达式:

std::apply([](auto& ...x){(..., some_function(x));}, the_tuple);

(生活例子)。

因为否则函数参数的求值顺序是未指定的

这里有一个方法可能对你的情况很有效:

template<typename... Ts>
struct TupleOfVectors {
    std::tuple<std::vector<Ts>...> tuple;
    void do_something_to_each_vec()
    {
        // First template parameter is just a dummy.
        do_something_to_each_vec_helper<0,Ts...>();
    }
    template<size_t N>
    void do_something_to_vec()
    {
        auto &vec = std::get<N>(tuple);
        //do something to vec
    }
private:
    // Anchor for the recursion
    template <int>
    void do_something_to_each_vec_helper() { }
    // Execute the function for each template argument.
    template <int,typename Arg,typename...Args>
    void do_something_to_each_vec_helper()
    {
        do_something_to_each_vec_helper<0,Args...>();
        do_something_to_vec<sizeof...(Args)>();
    }
};

这里唯一有点混乱的是do_something_to_each_vec_helper的额外虚拟int模板参数。当没有参数时,有必要使do_something_to_each_vec_helper仍然是模板。如果您想使用另一个模板参数,您可以在这里使用它。

如果您不是特别执着于通用形式的解决方案"for each"函数模板,那么你可以这样使用:

#ifndef TUPLE_OF_VECTORS_H
#define TUPLE_OF_VECTORS_H
#include <vector>
#include <tuple>
#include <iostream>
template<typename... Ts>
struct TupleOfVectors 
{
    std::tuple<std::vector<Ts>...> tuple;
    template<typename ...Args>
    TupleOfVectors(Args... args)
    : tuple(args...){}
    void do_something_to_each_vec() {
        do_something_to_vec(tuple);
    }
    template<size_t I = 0, class ...P>
    typename std::enable_if<I == sizeof...(P)>::type
    do_something_to_vec(std::tuple<P...> &) {}
    template<size_t I = 0, class ...P>
    typename std::enable_if<I < sizeof...(P)>::type
    do_something_to_vec(std::tuple<P...> & parts) {
        auto & part = std::get<I>(tuple);
        // Doing something...
        std::cout << "vector[" << I << "][0] = " << part[0] << std::endl;
        do_something_to_vec<I + 1>(parts);
    }
};
#endif // EOF

一个测试程序,使用GCC 4.7.2和clang 3.2构建:

#include "tuple_of_vectors.h"
using namespace std;
int main()
{
    TupleOfVectors<int,int,int,int> vecs(vector<int>(1,1),
        vector<int>(2,2),
        vector<int>(3,3),
        vector<int>(4,4));
    vecs.do_something_to_each_vec();
    return 0;
}

在泛型"for_each"中也可以使用相同风格的递归不带辅助索引装置的函数模板:

#ifndef FOR_EACH_IN_TUPLE_H
#define FOR_EACH_IN_TUPLE_H
#include <type_traits>
#include <tuple>
#include <cstddef>
template<size_t I = 0, typename Func, typename ...Ts>
typename std::enable_if<I == sizeof...(Ts)>::type
for_each_in_tuple(std::tuple<Ts...> &, Func) {}
template<size_t I = 0, typename Func, typename ...Ts>
typename std::enable_if<I < sizeof...(Ts)>::type
for_each_in_tuple(std::tuple<Ts...> & tpl, Func func) 
{
    func(std::get<I>(tpl));
    for_each_in_tuple<I + 1>(tpl,func);
}
#endif //EOF

和一个测试程序:

#include "for_each_in_tuple.h"
#include <iostream>
struct functor
{
    template<typename T>
    void operator () (T&& t)
    {
        std::cout << t << std::endl;
    }
};
int main()
{
    auto tpl = std::make_tuple(1,2.0,"Three");
    for_each_in_tuple(tpl,functor());
    return 0;
}

我正在测试元组和元编程,并找到当前线程。我认为我的工作可以激励别人,虽然我喜欢@Andy的解决方案。

不管怎样,找点乐子!

#include <tuple>
#include <type_traits>
#include <iostream>
#include <sstream>
#include <functional>
template<std::size_t I = 0, typename Tuple, typename Func>
typename std::enable_if< I != std::tuple_size<Tuple>::value, void >::type
for_each(const Tuple& tuple, Func&& func)
{
    func(std::get<I>(tuple));
    for_each<I + 1>(tuple, func);
}
template<std::size_t I = 0, typename Tuple, typename Func>
typename std::enable_if< I == std::tuple_size<Tuple>::value, void >::type
for_each(const Tuple& tuple, Func&& func)
{
    // do nothing
}

struct print
{
    template<typename T>
    void operator () (T&& t)
    {
        std::cout << t << std::endl;
    }
};
template<typename... Params>
void test(Params&& ... params)
{
    int sz = sizeof...(params);
    std::tuple<Params...> values(std::forward<Params>(params)...);
    for_each(values, print() );
}

class MyClass
{
public:
    MyClass(const std::string& text) 
        : m_text(text)
    {
    }
    friend std::ostream& operator <<(std::ostream& stream, const MyClass& myClass)
    {
        stream << myClass.m_text;
        return stream;
    }
private:
    std::string m_text;
};

int main()
{
    test(1, "hello", 3.f, 4, MyClass("I don't care") );
}

Boost mp11具有以下功能:

#include <iostream>
#include <string>
#include <boost/mp11.hpp>
using namespace std;
using boost::mp11::tuple_for_each;
std::tuple t{string("abc"), 47 };
int main(){
    tuple_for_each(t,[](const auto& x){
        cout << x + x << endl;
    });
}