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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM