Why doesn't C allow a function with variable length argument list such as:
void f(...)
{
// do something...
}
|
Why doesn't C allow a function with variable length argument list such as:
| ||||
|
feedback
|
|
I think the motivation for the requirement that varargs functions must have a named parameter is for uniformity of I don't think there's any particular reason why the language couldn't support varargs functions with no named parameters. There would have to be an alternative form of Also, there's not a lot of practical use for a varargs function with no named parameters. There's no language feature for a varargs function to determine the type and number of variable arguments, so the callee has to know the type of the first vararg anyway in order to read it. So you might as well make it a named parameter with a type. In I suppose that in theory the callee could look at some global to figure out how to read the first argument (and whether there even is one), but that's pretty nasty. I would certainly not go out of my way to support that, and adding a new version of [*] or if the implementation doesn't use a stack, to whatever it uses instead to pass function arguments. | |||||
feedback
|
|
With variable-length argument list you must declare the type of the first argument - that's the syntax of the language.
will work just fine. You then have to use | |||||||||||||||
feedback
|
|
C does allow for variable length arguments, but you need to use va_list, va_start, va_end, etc. for it. How do you think printf and friends are implemented? That said, I would recommend against it. You can usually accomplish a similar thing more cleanly using an array or struct for the parameters. | |||
|
feedback
|
|
You have plenty of answers. Here's link with some examples: http://publications.gbdirect.co.uk/c_book/chapter9/stdarg.html | |||
|
feedback
|
|
There's no an intrisic reason why C can't accept void f(...). It could, but "designers" of this C feature decided not to do so. My speculation about their motivations is that allowing void f(...) would require more "hidden" code (that can be accounted as a runtime) than not allowing it: in order to make distinguishable the case f() from f(arg) (and the others), C should provide a way to count how many args are given, and this needs more generated code (and likely a new keyword or a special variable like say "nargs" to retrieve the count), and C usually tries to be as minimalist as possible. | |||
|
feedback
|
|
The
is valid. If you don't mandate at least 1 parameter (which should be used to check for more parameters), there is no way for the function to "know" how it was called. All these statements would be valid
| |||
|
feedback
|