vote up 2 vote down star

I have noticed in Java that you can have a function with object... as a parameter and then method will take any number of objects as a parameter and treat it as an array. What is this called? I have been trying to search for it but it seems ... is ignored by search engines. I seem to remember printf in C does the same thing.

Thanks.

flag

4 Answers

vote up 7 vote down check

It's called varargs

link|flag
vote up 2 vote down

It's called varargs

link|flag
vote up 4 vote down

Wikipedia says this is called a variadic function.

link|flag
vote up 2 vote down

It's called varargs.

It means is function is accepting variable number of arguments. In C/CPP there is a header file stdarg.h which have declaration of methods for handling variable arguments.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.