Consider printf:
int printf ( const char * format, ... );
What are the terms used to describe the ... and the functions that use it? I've been calling it an ellipsis, but that's like calling & the "ampersand operator."
|
Consider printf:
What are the terms used to describe the |
||||
|
|
|||
|
|
Ellipsis notation (, ...) p202 "K+R The C Programming Language" |
|||||
|
|
"Ellipsis" is in fact often the best term here. Sometimes we refer to "arguments passed using the ellipsis" (C++03 8.3.5p2). In the context of figuring out the best overloaded function, an argument can be said to "match the ellipsis" (C++03 13.3.2p2).
Note: The coming C++0x Standard offers two different ways of declaring and implementing variadic functions (the |
|||
|
|
|
Ellipsis operator is the only term I have heard - it's rare enough (thankfully) that you don't need anything else! |
|||
|
This C++ draft specification refers to it simply as 'ellipsis' and sometimes with a definite or indefinite article, as 'an ellipsis' or 'the ellipsis'. 5.2.2 "Function call" section 6 contains:
8.3.5 "Functions" section 2 contains:
8.3.6 section 4 contains sample code:
Extra pedantry: section 13.3.3.1.3 ("Ellipsis conversion sequences") refers to "the ellipsis parameter specification". However, as stated in the sample code above, the ellipsis is not, strictly speaking, a parameter. 8.3.5 section 1 explains that, while the ellipsis appears in the parameter-declaration-clause, it follows the parameter-declaration-list. |
|||
|
|
|
In addition to "ellipsis" and "variadic function", one also sees the terms "vararg" and "varargs" thrown around. This appears to be an abbreviation for "variable argument list", judging by the language surrounding the (LEGACY) header Also, the principle reason that the term "ampersand operator" is not used is that the ampersand can represent either of two different operators, depending on the context, which would make the term ambiguous. This does not occur with the ellipsis; there is no other meaning assigned to it, so using the term "ellipsis" for the token " |
|||
|
|
|
Martin and Demian are both right:
|
||||
|
|
...in the standard. It applies to...token specifically. Function declared with ellipsis in the parameter list is called variadic function. – AndreyT Feb 8 '11 at 19:52