2

如何添加数字?

typedef boost::mpl::vector<
    boost::mpl::int_<1>, boost::mpl::int_<2>,
    boost::mpl::int_<3>, boost::mpl::int_<4>,
    boost::mpl::int_<5>, boost::mpl::int_<6> > ints;
typedef boost::mpl::accumulate<ints, boost::mpl::int_<0>, ????? >::type sum;
4

1 回答 1

3

编辑:我错了,你可以mpl::plus直接使用,使用占位符表达式。这简化了整个符号:

typedef mpl::accumulate<ints, mpl::int_<0>, mpl::plus<mpl::_1, mpl::_2>  >::type sum;

当然,也可以使用元函数类获得相同的效果(添加是一种矫枉过正,但对于更复杂的东西可能是合理的):

struct plus_mpl
{
    template <class T1, class T2>
    struct apply
    {
       typedef typename mpl::plus<T1,T2>::type type;
    };
};

typedef mpl::accumulate<ints, mpl::int_<0>, plus_mpl >::type sum;
于 2012-04-16T11:39:57.580 回答