Tagged Questions
Variadic functions are functions which accept variable numbers of arguments.
71
votes
6answers
18k views
C/C++: Passing variable number of arguments around
Say I have a C function which takes a variable number of arguments: How can I call another function which expects a variable number of arguments from inside of it, passing all the arguments that got ...
25
votes
3answers
4k views
Java, 3 dots in parameters
What does the 3 dots in the following function mean?
function x(String... strings)
{
//
}
22
votes
2answers
10k views
Java “params” in method signature?
In c# if you want a method to have an indeterminate number of parameters you can make the final parameter in the method signature a "params" which to the method looks like an array but allows anyone ...
21
votes
2answers
429 views
Why doesn't Java varargs support collections?
In my Java code I often use the very handy method(Class... args) varargs. As far as I know, they allow you to pass any amount of Class objects or an array of Class[]. Since I also often use the Java ...
20
votes
4answers
5k views
Is it possible to send a variable number of arguments to a JavaScript function?
Is it possible to send a variable number of arguments to a JavaScript function, from an array?
var arr = ['a','b','c']
var func = function()
{
// debug
alert(arguments.length);
//
...
14
votes
4answers
1k views
Is there a Java 1.5 varargs API for slf4j yet?
I want to get rid of this lot...
public void info(String msg);
public void info(String format, Object arg);
public void info(String format, Object arg1, Object arg2);
public void info(String format, ...
13
votes
3answers
3k views
varargs and the '…' argument
Consider the method declaration:
String.format(String, Object ...)
The Object ... argument is just a reference to an array of Objects. Is there a way to use this method with a reference to an ...
13
votes
5answers
813 views
Last named parameter not function or array?
This question is about vararg functions, and the last named parameter of them, before the ellipsis:
void f(Type paramN, ...) {
va_list ap;
va_start(ap, paramN);
va_end(ap);
}
I was reading in ...
12
votes
2answers
218 views
Java: overloaded method resolution and varargs — confusing example
Just when I thought I understood JLS15.12 as it applied to varargs, here's this example:
package com.example.test.reflect;
public class MethodResolutionTest2 {
public int compute(Object obj1, ...
12
votes
4answers
2k views
Can I pass an array as arguments to a method with variable arguments in Java?
I'd like to be able to create a function like:
class A {
private String extraVar;
public String myFormat(String format, Object ... args){
return String.format(format, extraVar, args);
}
}
...
11
votes
1answer
221 views
Scala - can unapply return varargs?
Object L1 below works. I can "create" an L1 by passing in varargs, which is nice, but I would like to be able to assign to an L1 using the same syntax. Unfortunately, the way I've done it here ...
11
votes
6answers
10k views
When do you use varargs in Java?
I'm afraid of varargs. I don't know what to use them for.
Plus, it feels dangerous to let people pass as many arguments as they want.
What's an example of a context that would be a good place to ...
10
votes
5answers
1k views
Calling Java varargs method with single null argument?
If I have a vararg Java method foo(Object ...arg) and I call foo(null, null), I have both arg[0] and arg[1] as nulls. But if I call foo(null), arg itself is null. Why is this happening?
10
votes
2answers
3k views
How to pass variable number of arguments to a PHP function
I have a PHP function that takes a variable number of arguments (using func_num_args() and func_get_args()), but the number of arguments I want to pass the function depends on the length of an array. ...
10
votes
2answers
6k views
Using varargs from Scala
I'm tearing my hair out trying to figure out how to do the following:
def foo(msf: String, o: Any, os: Any*) = {
println( String.format(msf, o :: List(os:_*)) )
}
There's a reason why I have to ...
10
votes
6answers
3k views
Are there gotchas using varargs with reference parameters
I have this piece of code (summarized)...
AnsiString working(AnsiString format,...)
{
va_list argptr;
AnsiString buff;
va_start(argptr, format);
buff.vprintf(format.c_str(), argptr);
...
9
votes
1answer
107 views
Error with varargs for function-objects in Scala?
Why does this not work?
val f = (args: Int*) => args.sum
error: ')' expected but identifier found.
val f = (args: Int*) => args.sum
^
This however works perfectly fine
def ...
9
votes
6answers
152 views
Why is the type of the var-arg argument “over approximated”?
If I understand it correctly, Integer[] is a subtype of Object[]. You can for instance do
Object[] objs = new Integer[] { 1, 2, 3 };
While playing around with var-args I realized, that it seems ...
9
votes
3answers
281 views
java: how can i create a function that supports any number of parameters?
is it possible to create a function in java that supports any number of parameters and then to be able to iterate through each of the parameter provided to the function ?
thanks
kfir
9
votes
3answers
2k views
javascript apply on constructor, throwing “malformed formal parameter”
thanks to wonderful responses to this question I understand how to call javascript functions with varargs.
now I'm looking to use apply with a constructor
I found some interesting information on ...
9
votes
3answers
2k views
How can a function with 'varargs' retrieve the contents of the stack?
Normally, in Delphi one would declare a function with a variable number of arguments using the 'array of const' method. However, for compatibility with code written in C, there's an much-unknown ...
8
votes
3answers
309 views
How to declare scala method so that it can be called from Java using varargs style
I have 2 simple methods in a scala library class:
class Foo {
def bar(args : String*) : Unit = println("Foo.bar with: " + args)
def bar(args : Array[String]) : Unit = bar(args.toSeq : _*)
}
...
8
votes
2answers
2k views
Split comma-separated parameters in LaTeX
I am trying to build a command which is similar to LaTeX \cite{}, which accepts a comma-separated list of parameters like this
\cite{Wall91, Schwartz93}
I would like to pass each item in the ...
8
votes
3answers
620 views
JSR223: Calling Java “varargs” methods from script
I have a method that looks like this on Java:
public void myMethod(Object... parms);
But I can't call this method as expected from the scripts.
If, in ruby, I do:
$myObject.myMethod(42);
It ...
8
votes
7answers
5k views
How to pass variable number of arguments to printf/sprintf
I have a class that holds an "error" function that will format some text. I want to accept a variable number of arguments and then format them using printf.
Example:
class MyClass
{
public:
...
8
votes
3answers
2k views
Separate NSArray to a list of NSString type objects
A UIActionSheet is initalized with:
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Title" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil
...
8
votes
4answers
965 views
Converting the “arguments” object to an array in javascript
As a trivia question, I'm trying to write a javascript function that returns its variable number of arguments in sorted (normal lexicographic) order.
Having never dealt with javascript before, I came ...
7
votes
3answers
158 views
Why doesn't autoboxing overrule varargs when using method overloading in Java 7?
We have a class LogManager in our Java project which looks like this:
public class LogManager {
public void log(Level logLevel, Object... args) {
// do something
}
public void ...
7
votes
3answers
113 views
Can we use va_arg with unions?
6.7.2.1 paragraph 14 of my draft of the C99 standard has this to say about unions and pointers (emphasis, as always, added):
The size of a union is sufficient to contain the largest of its members. ...
7
votes
2answers
181 views
Java: Find out whether function was called with varargs or array
Is there a way to find out whether a Java function (or a constructor) that takes varargs was actually called with varargs or with an array?
Say I have the following:
public class MyCompositeObjects ...
7
votes
1answer
511 views
In scala can I pass repeated parameters to other methods?
Here is something I can do in java, take the results of a repeated parameter and pass it to another method:
public void foo(String ... args){bar(args);}
public void bar(String ... ...
7
votes
3answers
532 views
bug with varargs and overloading?
There seems to be a bug in the Java varargs implementation. Java can't distinguish the appropriate type when a method is overloaded with different types of vararg parameters.
It gives me an error The ...
7
votes
2answers
528 views
In Java, why is the call foo() not ambigious given 2 varags methods foo(int… ints) and foo(Object… objects)?
If I declare just the 2 varargs methods as follows:
public void foo(String... strings) {
System.out.println("Foo with Strings");
}
and
public void foo(int... ints) {
...
6
votes
8answers
131 views
Are String [] and String… (Var-args) same when they work internally?
class WrongOverloading{
void something(String [] a){ .. }
Integer something(String... aaa){ return 1;}
}
Above code does not compile! Compiler says these are duplicate methods.
So using ...
6
votes
1answer
221 views
Simplified Varargs Method Invocation in Java 7
In Java 7, you have the option to put a @SafeVarargs annotation to suppress the warning you get when compiling a method with a non-reifiable varargs parameter. Project Coin's proposal stipulates that ...
6
votes
5answers
198 views
Java … operator
In Filthy Rich Clients this code is presented:
public ImageLoadingWorker(JTextArea log, JPanel viewer, String... filenames) {}
What exactly does ... mean?
6
votes
3answers
775 views
How to wrap a function using varargin and varargout?
mini-example:
function varargout = wrapper(varargin)
varargout = someFunction(varargin);
That's how I'd do it first. But for example if someFunction = ndgrid this yields a not defined for cell ...
6
votes
2answers
333 views
Combine guava's ImmutableList and varargs
I want create constructor that will take one or more integers and save it into field as ImmutableList. According to "The right way to use varargs to pass one or more arguments" by Bloch's Item 42 I ...
6
votes
1answer
1k views
Looping through macro Varargs values
If I define some macro:
#define foo(args...) ({/*do something*/})
Is there some way to actually loop through args rather than pass it along to another function? Something like
#define ...
6
votes
2answers
1k views
How to properly match varargs in Mockito
I've been trying to get to mock a method with vararg parameters using Mockito:
interface A {
B b(int x, int y, C... c);
}
A a = mock(A.class);
B b = mock(B.class);
when(a.b(anyInt(), anyInt(), ...
6
votes
4answers
424 views
In C++, do variadic functions (those with … at the end of the parameter list) necessarily follow the __cdecl calling convention?
I know that __stdcall functions can't have ellipses, but I want to be sure there are no platforms that support the stdarg.h functions for calling conventions other than __cdecl or __stdcall.
6
votes
6answers
1k views
Arrays.asList() not working as it should?
I have a float[] and i would like to get a list with the same elements. I could do the ugly thing of adding them one by one but i wanted to use the Arrays.asList method. There is a problem though. ...
6
votes
3answers
4k views
Passing on named variable arguments in python
Say I have the following 2 methods:
def methodA(arg, **kwargs):
pass
def methodB(arg, *args, **kwargs):
pass
In methodA I wish to call methodB, passing on the kwargs. However, it seems if ...
5
votes
4answers
107 views
In which cases va_list should be used
I made a small C library that implements graph theory algorithms and binds them for use in Python.
I send it to a friend to check it and he told me that va_list is "dangerous" and must not be used in ...
5
votes
4answers
62 views
When to prefer a varargs list to an array?
I'm implementing an API an have a method which you pass a list of paths where the program reads resources from
public void importFrom(String... paths) {
}
I'm using varargs to make calling the ...
5
votes
2answers
121 views
C/C++ puzzle…How Can I pass variadic arguments into a macro?
I got stuck here...
#include <stdio.h>
#define DBG_LVL(lvl, stmt) \
do{ \
if(lvl>1) printf stmt; \
}while(0)
#define DBG_INFO(stmt) DBG_LVL(1, stmt)
#define DBG_ERROR(stmt) ...
5
votes
3answers
174 views
C# P/Invoke: Varargs delegate callback
I was just trying to do some managed/unmanaged interop. To get extended error information I decided to register a log callback offered by the dll:
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
...
5
votes
2answers
2k views
How to create variable argument methods in Objective-C
maybe this will be obviously simple for most of you, but could you please give an example how to create similar methods (in objective-C) and functions in C to create functions like NSString's ...
5
votes
5answers
158 views
does varargs offer a kind of poor man's polymorphism?
No doubt every other student of C has noticed this; it's new to me.
If I declare:
int xlate( void *, ... );
and then define xlate( ) in several different ways (maybe all definitions but one are ...
5
votes
5answers
319 views
Why do Guava classes provide so many factory methods instead of just one that takes varargs? [closed]
Possible Duplicate:
Why does Guava's ImmutableList have so many overloaded of() methods?
Looking at Guava's ImmutableList (and some other classes), you'll find plenty of overloaded of ...