C 11介绍了
variadic templates
template <typename... Args> void foo(Args... params) { cout << sizeof...(Args) << endl; }
Args和params的名字是什么?我知道其中一个(至少?)被称为可变参数模板包,但它是什么?另外叫什么?
解决方法
部分引用FDIS,§14.5.3:
1 A template parameter pack is a template parameter that accepts zero or more template arguments.
2 A function parameter pack is a function parameter that accepts zero or more function arguments.
3 A parameter pack is either a template parameter pack or a function parameter pack.
4 A pack expansion consists of a pattern and an ellipsis,the instantiation of which produces zero or more instantiations of the pattern in a list.
所以在你的例子中,
> typename … Args是一个模板参数包(因此也是一个参数包)> Args … params是一个函数参数包(因此也是一个参数包)> sizeof …(Args)是一个包扩展,其中Args是模式(在此上下文中是一个标识符).