我正在为自己编写一个数学库,大量使用模板,尤其是可变参数模板,并希望实现一个 Sum 仿函数,它可以采用任意数量的不同类型的仿函数并存储它们。我也想避免任何动态内存分配(作为我自己的练习,我一般不反对动态内存分配)。
我找不到任何帮助的问题是如何将类实例存储到不同的类型。就像是:
any_array<Types...> a = {Type1(), Type2(), Type3(), ...};
通过某种方式迭代a
获取每个值的正确类型。使用 boost 不会是一个问题,因为我已经在其他地方使用它。
我想出了一个似乎运作良好的解决方案,但我想看看还有什么其他方法可以解决这个问题。
我对此的解决方案是一个基本上看起来像的类(一个完全编译的实现和示例可以在下面找到):
template <class ... Functions>
class Sum
{
char functions[num_bytes<Functions...>::value];
template <class Next, class ... Others>
void SetFunctions(int offset, Next f, Others ... others)
{
Next * p = (Next*)(functions + offset);
*p = f;
SetFunctions(offset + sizeof(Next), others...);
}
template <class Last>
void SetFunctions(int offset, Last f)
{
Last * p = (Last*)(functions + offset);
*p = f;
}
public:
Sum(Functions ... funcs)
{
SetFunctions(0, funcs...);
}
};
我喜欢这个解决方案,因为它应该很容易推广到我想要的任何类型的累积函子,并且下面的实现对用户是隐藏的。我不确定将原始字节存储到这些对象中,但想不出这本身有什么问题。这被普遍化的可能性使我怀疑它已经在某个地方实施,但我在自己的搜索中找不到任何东西。
FWIW 这是我实现的完整示例:
#include <functional>
#include <boost/mpl/vector.hpp>
#include <boost/mpl/sizeof.hpp>
#include <boost/mpl/accumulate.hpp>
#include <boost/mpl/plus.hpp>
#include <boost/mpl/placeholders.hpp>
#include <boost/mpl/int.hpp>
#include <iostream>
#include <boost/utility/enable_if.hpp>
using namespace boost::mpl::placeholders;
using namespace boost::mpl;
//Returns the sum of the number of bytes each class takes up.
//This is used as the size of the array we need to create.
template <class ... Args>
struct num_bytes :
boost::mpl::accumulate<vector<Args...>,
int_<0>,
plus<_1, sizeof_<_2> > >::type
{
};
template <class ... Args>
struct empty_list
{
typedef empty_list type;
static const bool value = sizeof...(Args) == 0;
};
template <class ... Functions>
class Sum
{
public:
Sum(Functions ... functions)
{
SetFunctions(0, functions...);
}
inline double operator()(double x)
{
return evaluate<Functions...>(0, x);
}
private:
template <class Next, class ... Others>
inline void SetFunctions(int offset, Next f, Others ... funcs)
{
Next * p = (Next*)(functions + offset);
*p = f;
SetFunctions(offset + sizeof(Next), funcs...);
}
template <class Last>
inline void SetFunctions(int offset, Last f)
{
Last * p = (Last*)(functions + offset);
*p = f;
}
//Because we are not passing our function objects down, we
//have to manually disable this function overload to end the recursive
//instantiations of this function.
template <class Next, class ... Others>
inline double evaluate(int offset, double x,
typename boost::enable_if_c<!empty_list<Others...>::value>::type * dummy = NULL)
{
Next * p = (Next*)(functions + offset);
return evaluate<Others...>(offset + sizeof(Next), x) + (*p)(x);
}
template <class Last>
inline double evaluate(int offset, double x)
{
Last * p = (Last*)(functions+offset);
return (*p)(x);
}
char functions[num_bytes<Functions...>::value];
};
//Function to help initialize a Sum object
template <class ... Functions>
Sum<Functions...> GetSum(Functions ... functions)
{
return Sum<Functions...>(functions...);
}
//return function object of the form f(x) = x + n.
std::binder2nd<std::plus<int> > GetTestFunction(int n)
{
return std::bind2nd(std::plus<int>(), n);
}
int main()
{
auto sum = GetSum(GetTestFunction(0),
GetTestFunction(1),
GetTestFunction(2));
std::cout << sum(0) << ' ' << sum(1) << std::endl;
return 0;
}
哪个输出:3 6
运行时。
注意:我无法使用 gcc-4.6 进行编译,只有 gcc-4.7,我使用了命令行:g++-4.7 -std=c++0x test_sum.cpp -Wall