Variadic模板总结类

时间:2013-08-22 12:51:51

标签: c++ metaprogramming variadic-templates

尝试使用可变参数模板,但出于某种原因,我的大脑已经麻木了。

我正在尝试创建一个类来汇总变量的编译时间,但无法正确创建停止条件..我试着这样:...但它不编译,快速帮助任何人?

#include <iostream>
#include <type_traits>
using namespace std;


template<size_t Head, size_t ...Rest>
struct Sum
{
    static const size_t value = Head + Sum<Rest...>::value;
    static void Print() {       
        cout << value;
    }
};

template<>
struct Sum
{
    static const size_t value = 0;
};

int _tmain(int argc, _TCHAR* argv[])
{
    Sum<5,5,5>::Print();
    return 0;
}

1 个答案:

答案 0 :(得分:7)

您需要先声明基本模板。你只是真正宣布了你将要使用的两个专业。

template<size_t...> struct Sum;

template<size_t Head, size_t ...Rest>
struct Sum<Head, Rest...>
{
    static const size_t value = Head + Sum<Rest...>::value;
    static void Print() {       
        cout << value;
    }
};

template<>
struct Sum<>
{
    static const size_t value = 0;
};