c – 为可变参数模板添加的新语法实体的名称是什么?

前端之家收集整理的这篇文章主要介绍了c – 为可变参数模板添加的新语法实体的名称是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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是模式(在此上下文中是一个标识符).

原文链接:/c/112759.html

猜你在找的C&C++相关文章