How can I write a function that accepts a variable number of arguments? Is this possible, how?
|
|
You probably shouldn't, and you can probably do what you want to do in a safer and simpler way. Technically to use variable number of arguments in C you include stdarg.h. From that you'll get the
If you ask me, this is a mess. It looks bad, it's unsafe, and it's full of technical details that have nothing to do with what you're conceptually trying to achieve. Instead, consider using overloading or inheritance/polymorphism, builder pattern (as in |
|||||||||||||||
|
|
C-style variadic functions are supported in C++. However, most C++ libraries use an alternative idiom e.g. whereas the |
||||
|
|
|
The only way is through the use of C style variable arguments, as described here. Note that this is not a recommended practice, as it's not typesafe and error-prone. |
|||||
|
|
Apart from varargs or overloading, you could consider to aggregate your arguments in a std::vector or other containers (std::map for example). Something like this:
In this way you would gain type safety and the logical meaning of these variadic arguments would be apparent. Surely this approach can have performance issues but you should not worry about them unless you are sure that you cannot pay the price. It is a sort of a a "Pythonic" approach to c++ ... |
|||||||
|
|
In C++[01]x there is a way to do variable argument templates which lead to a really elegant and type safe way to have variable argument functions. Bjarne himself gives a nice example of printf using variable argument templates in the C++0xFAQ. Personally, I consider this so elegant that I wouldn't even bother with a variable argument function in C++ until that compiler has support for C++[01]x variable argument templates. |
||||
|
|
|
In C++11 you have two new options, as the
Below is an example showing both alternatives:
|
|||
|
|
|
There is no standard C++ way to do this without resorting to C-style varargs ( There are of course default arguments that sort of "look" like variable number of arguments depending on the context:
All four function calls call |
|||
|
|
|
As others have said, C-style varargs. But you can also do something similar with default arguments. |
|||
|
|
|
If you know the range of number of arguments that will be provided, you can always use some function overloading, like
and so on... |
|||
|
|
|
It's possible you want overloading or default parameters - define the same function with defaulted parameters:
This will allow you to call the method with one of four different calls:
... or you could be looking for the v_args calling conventions from C. |
|||
|
|
|
We could also use an initializer_list if all arguments are const and of the same type |
|||
|