我正在尝试做一个可以返回参数包的草图。我在这里找到了一个参考: tuple to parameter pack
我将它修改为更加通用,并且可以将任何类型的对象返回到 void 函数指针。
也就是说,现在我正在使用 arduino DUE 和这个板支持元组进行测试。但是arduino uno没有。
因此,基于这篇文章: 可变参数数据结构 我决定使用我自己的微元组数据结构,它将由 UNO 支持。该结构自行工作。
到目前为止的代码:
#include <tuple>
template<size_t idx, typename T>
struct microTupleGetHelper;
template<typename ... T>
struct microTuple
{
};
template<int ...> struct seq {};
template<int N, int ...S> struct gens : gens<N - 1, N - 1, S...> { };
template<int ...S> struct gens<0, S...>{ typedef seq<S...> type; };
template<typename T, typename ... Rest>
struct microTuple<T, Rest ...>
{
microTuple(const T& first, const Rest& ... rest)
: first(first)
, rest(rest...)
{}
T first;
microTuple<Rest ... > rest;
template<size_t idx>
auto get() -> decltype(microTupleGetHelper<idx, microTuple<T,Rest...>>::get(*this))
{
return microTupleGetHelper<idx, microTuple<T,Rest...>>::get(*this);
}
};
template<typename T, typename ... Rest>
struct microTupleGetHelper<0, microTuple<T, Rest ... >>
{
static T get(microTuple<T, Rest...>& data)
{
return data.first;
}
};
template<size_t idx, typename T, typename ... Rest>
struct microTupleGetHelper<idx, microTuple<T, Rest ... >>
{
static auto get(microTuple<T, Rest...>& data) -> decltype(microTupleGetHelper<idx-1,
microTuple<Rest ...>>::get(data.rest))
{
return microTupleGetHelper<idx-1, microTuple<Rest ...>>::get(data.rest);
}
};
template <typename ...Args>
struct paramsPack
{
//std::tuple<Args...> params;
microTuple<Args...> params;
void (*func)(Args...);
/* template<int ...S>
auto callFunc(seq<S...>) -> decltype(this->func(std::get<S>(this->params) ...))
{
return func(std::get<S>(params) ...);
}*/
template<int ...S>
auto callFunc(seq<S...>) -> decltype(this->func(this->params.get<S>() ...))
{
return func(params.get<S>() ...)
}
auto delayed_dispatch() -> decltype(this->callFunc(typename gens<sizeof...(Args)>::type()))
{
return this->callFunc(typename gens<sizeof...(Args)>::type()); // Item #1
}
};
错误来自自动 callFunc(..),它代表:
microTuple:72:73: error: expected primary-expression before ')' token
auto callFunc(seq<S...>) -> decltype(this->func(this->params.get<S>() ...))
^