C++ 11 可变模板参数的两种展开方式

#include <iostream>
#include <string>
#include <stdint.h>

template<typename T>
T Sum(T t)
{
    std::cout << t << " = ";
    return t;
}
template<typename T, typename... Args>
T Sum(T head, Args...args)
{
    std::cout << head << " + ";
    return head + Sum(args...);
}


template<typename T>
void PrintArg(T t)
{
    std::cout << t << " ";
}
template<typename... Args>
void Expand(Args... args)
{
    std::initializer_list<int32_t> {(PrintArg(args), 0)...};
    std::cout << std::endl;
}

int32_t main()
{
    std::cout << Sum(1, 2, 3, 4) << std::endl;
    Expand(1, 2, 3, 4);
    std::cin.get();
    return 0;
}

效果:

1 + 2 + 3 + 4 = 10
1 2 3 4

 

posted @ 2017-09-02 16:24  你好阿汤哥  Views(3084)  Comments(0Edit  收藏  举报