C++11中允许模板定义0-任意个模板参数。写法如下:
template<class …T>
…的语义为:1)声明一个参数包,参数包可以包含任意个参数 ; 2)在模板定义的右边,可以将参数包展开成一个一个独立的参数
#include <iostream>
#include <string>
using namespace std;
template <class T>
void Print(T t)
{
cout << t << " ";
}
template<class T, class ...Args>
void Print(T t, Args... args)
{
cout << t<<" ";
Print(args...);
}
int main()
{
int a = 1;
double b = 5.0;
string ss = "nihao";
Print(a, b, "nihao");
}