varivadic templates - 数量不定的模板参数
C++11 2.0版本中新增了几个功能。
我们在写模板的时候如果需要传多个参数(未提前定),我们可以使用varivadic templates模型。如下用示例说明:
#include <iostream>
using namespace std;
//必须要有的重载函数版本
void print() {
}
//variadic templates(since C++11)
//数量不定的模板参数
template <typename T, typename... Types>
void print(const T& firstArg, const Types&... args) {
cout << firstArg << endl;
cout << sizeof...(args) << endl;//查看包的数量
print(args...);//递归调用
}
int main(){
print(7.5,"hello","world!!",42);
system("pause");
return 0;
}
如上面的例子,其中typename后面的"…"表示为”一包“的参数,具体数量不知,print(args…);表示递归调用此函数,这样就可以不断输出args这一包数据了。其中可以用sizeof…(args)查看当前数量参数。在args参数被不断输出的情况下,最后args参数为0时就会调用上面重载版本的print()函数。
以上代码执行结果如下:
可以看到args中元数不断输出,个数不断减少。