Variadic functions are functions which accept a variable numbers of arguments.

learn more… | top users | synonyms

2
votes
1answer
29 views

Method with variable arguments followed by non-varargs

I get that you can do something like this: +(id) objectWithItems: (NSObject *) item, ...; However I was wondering if it was possible to do something like this (I cannot get this to compile): ...
1
vote
1answer
43 views

One-line instantiation of QVector with values without using <<

I can instantiate a QVector containing three QColor values with QVector<QColor>() << x << y << z. Is it possible to instantiate it on one line without using the overloaded ...
1
vote
0answers
102 views

@SafeVarargs and Java 6 interoperability

I have a method with a generic varargs parameter in my API. I want my API to be Java 6 source and binary compatible, but it would be nice if Java 7 API consumers wouldn't suffer from unnecessary ...
2
votes
3answers
79 views

Constructors in scala with varargs

I am a Scala newbie. I've ploughed through a couple of books, and read some online tutorials. My first project is having problems, so I have reduced the code to the simplest thing that can go wrong. ...
2
votes
4answers
68 views

Method Call Order

The following code compiles fine in Java: public static void main(String[] args) { int i =5; call(i); } static void call(int i){ System.out.println("int"); } static void call(long i){ ...
3
votes
1answer
58 views

Behavior of method overloading with varargs

I have two overloaded methods with varargs int and long. When I run a test passing integer it seems to prefer the varargs long method. Whereas, if I make the methods static and run with an integer it ...
0
votes
3answers
44 views

NSLog inside variable arguments function

I do not have clear idea about objective c variable argument function. I want to write a fuction which will take a nlsog type parameter but sometime I shall use NSLog inside that function. How can I ...
3
votes
2answers
62 views

Alternative to Varargs

I'm implementing a class and its' constructor have to get some Strings as parameters, but I don't know the number of these Strings. I could here pass a vararg parameter (String), but it is a Homework, ...
1
vote
3answers
38 views

Varargs in a group?

About Varargs, can i repeat the arguments in a group? For instance, i want to allow users pass in: myFunc(1, "one"); myFunc(1, "one", 2, "two"); myFunc(1, "one", 2, "two", 3, "three"); It seems ...
0
votes
2answers
58 views

Java generic Comparator unchecked warning

I wrote a help method to combine multiple comparators to one: public static <T> Comparator<T> createComparatorChain( final Comparator<T>... comparators ) { return new ...
1
vote
2answers
33 views

Var arg methods causing error in client code [duplicate]

I was trying to figure out the ins-and-outs of varargs and wrote the following code public class VarArgTest { /** * @param args */ public static void main(String[] args) { VarArgTest v = new ...
4
votes
2answers
54 views

Source Code for Varargs in the Java API?

Is it possible to find source code in the Java API for Varargs (in other words, explain how the mechanism works)? EDIT: I do have the Java source code, I was unable to find Varargs though (I looked ...
0
votes
1answer
42 views

Passing shared_ptr via variable argument list

Is this possible to do and how would I pass the shared_ptr(s)? I found some related question (C++ variable number of arguments) but it does not fully address my question. I have tried a few ways to ...
12
votes
4answers
500 views

How to reverse the order of arguments of a variadic template function?

I have a template function with varargs template arguments, like this template<typename Args...> void ascendingPrint(Args... args) { /* ... */ } And I want to write template<typename ...
3
votes
2answers
47 views

Ambiguity error - varargs and parameter with same type

I want to instanciate a given class with the following two constructors: public Foo(File jarFile, String... args) public Foo(File jarFile, String className, String... args) I call the first ...
0
votes
4answers
128 views

An example of use of varargs in C

Here I found an example of how varargs can be used in C. #include <stdarg.h> double average(int count, ...) { va_list ap; int j; double tot = 0; va_start(ap, count); //Requires ...
0
votes
1answer
48 views

@SupressWarnings for the invocation of the varargs with un-cast null

What string should I use in @SuppressWarnings("....") to remove the warning I get in this unit test of a method with varargs: /** * Calling {@link #readFiles(String, String...)} with just one arg ...
3
votes
3answers
59 views

Why would casting a vararg function parameter matter?

Recently I've encountered a problem with a function that accepts variable number of arguments and expects the last one to be a null pointer. I don't have access to its implementation. Casting that ...
0
votes
0answers
63 views

Java: varargs in interface

public interface MyInterface { public ArrayList<Double> f(ArrayList<Double>... args); } I get the warning: "Type safety: Potential heap pollution via varargs parameter ...
0
votes
0answers
19 views

Varargs overloading

I was just trying out few things using Varargs: Just encountered with one problem: class A { public void func(int... a) { System.out.println("int... a"); } public void func(double... b) { ...
3
votes
2answers
87 views

Workarounds for lack of varargs in Erlang

Completely new to Erlang. I'm trying to define some functions for function composition, such as compose, juxt and pipe but running into the fact that Erlang doesn't have (to my knowledge) varargs so ...
1
vote
2answers
70 views

Passing a individual arguments AND a Seq to a var-arg function

I know it's possible to pass individual arguments to a vararg function and it's possible to pass a seq using :_* but is it possible to pass both? for example: scala> object X { def y(s: String*) ...
6
votes
2answers
72 views

How to make a variatic method take a single array as the first value of the varargs array?

Given the variables: Object[] ab = new Object[] { "a", "b" }; Object[] cd = new Object[] { "c", "d" }; When calling the following method: public static void m(Object... objects) { ...
2
votes
2answers
51 views

How do I pass a PHP function expecting varargs a string?

I have a PHP function which takes a variable number of arguments. function foo() { $numargs = func_num_args(); if ($numargs < 3) { die("expected number of args is 3, not " . ...
15
votes
6answers
371 views

Java generic varargs method parameters

I am wondering if there is an easy, elegant and reusable way to pass a string and a string array to a method that expect varargs. /** * The entry point with a clearly separated list of parameters. ...
-3
votes
3answers
124 views

Is string args[] in java implemented as varargs? [closed]

Can anyone explain me how public static void main(String args[]) 's String args[] is implemented ? Is it implemented as varargs ? I am asking this because args.length gives only the number of ...
4
votes
2answers
134 views

Why is varargs (Class<? extends Throwable>… t) “unchecked or unsafe” operation?

Ok so I'm calling a method with a signature (Class<? extends Throwable>... exceptions) and I get a "File.java uses unchecked or unsafe operations" warning here in the main method: public class ...
0
votes
1answer
66 views

Is there any good reason not to use 'define' with variable argument length?

Recently I came upon this code: #define LOG(type, str) printf(str) #define LOG1(type, str,arg1) printf(str,arg1) #define LOG2(type, str,arg1,arg2) ...
1
vote
3answers
132 views

C - passing variable arguments

I'm writing essentially an implementation of printf. I want it so you can pass many strings within strings, e.g.: kprintf("Hello %s", "Goodbye %s", "Farewell\n"); Don't ask why, it may very well ...
3
votes
2answers
220 views

C - Pass variable number of command line arguments into method with variable number of parameters

I am writing a C program that will take a variable number of command line arguments. I need to then take these arguments and pass them into a function that takes a variable number of filenames as ...
3
votes
2answers
128 views

Java 7 overloading with varargs [duplicate]

Possible Duplicate: bug with varargs and overloading? could anyone explain me how this one works: class Vararg { static void vararg(int... x) { ...
2
votes
2answers
88 views

Passing an array as parameters to a vararg function

I have some code that looks like this: uint8_t activities[8]; uint8_t numActivities = 0; ... activities[numActivities++] = someValue; ... activities[numActivities++] = someOtherValue; ... switch ...
0
votes
1answer
72 views

Groovy convert from List to var args for method call

I am using a plugin that provides email functionality as follows: class SendSesMail { //to void to(String ... _to) { this.to?.addAll(_to) log.debug "Setting 'to' addresses ...
2
votes
1answer
89 views

How to I override a Java varargs method in Scala?

I have a method defined in Java like: void foo(int x, Thing... things) I need to override that in Scala, but both of these give errors: override def foo(x: Int, things: Thing*) override def foo(x: ...
1
vote
1answer
168 views

Java SafeVarargs annotation, does a standard or best practice exist?

I've recently come across the java @SafeVarargs annotation. Googling for what makes a variadic function in java unsafe left me rather confused (heap poisoning ? erased types ?). So I'd like to know a ...
4
votes
4answers
69 views

why no the collisions on the main function overloading? [duplicate]

Possible Duplicate: Can we overload the main method in Java? When I tryed to compile and run following code, it's working and I see "A" on the console. Why? In my mind (String... args) ...
0
votes
1answer
68 views

Elegant equivalent to C's vsscanf() in Java

I need an equivalent to C's vsscanf() in Java. More detailled, I have this here: private void parseString(String parseMe, String format, Object[] args) { // something like: vsscanf(parseMe, ...
0
votes
2answers
141 views

Call Method.invoke() when arguments in array

I have the following interface: interface Foo { void bar(String a, int b); } I want to invoke Foo.bar (on an implementation of Foo) reflectively. However, the arguments are in array and i do not ...
16
votes
6answers
365 views

Compiler error : reference to call ambiguous

Case 1 static void call(Integer i) { System.out.println("hi" + i); } static void call(int i) { System.out.println("hello" + i); } public static void main(String... args) { call(10); } ...
1
vote
4answers
162 views

Getting getDeclaredMethods() to match a varargs method

I want to use getDeclaredMethod() to find a method with this signature: public void foo(String inArg1, Object... inArgs); Using this call: Class<?>[] argClasses = { String.class, ...
1
vote
1answer
64 views

IL, varags and ExcelDNA

Context: Windows 7, ExcelDNA 0.30, .NET 4.0 I'm still trying to get a params/ParamArray approach working in Excel via ExcelDNA. By using varags, I'm avoiding anything to do with ...
4
votes
1answer
133 views

How do to pass variable number of arguments to a function in c++ with no named parameters

I need to write a function which takes a variable number of arguements, its essentially a wrapper around a snprintf like function. I understand how to do this in general as shown in C/C++: Passing ...
1
vote
3answers
975 views

Create a MySQL stored function with a dynamic number of arguments

I am trying to create a MySQL function IS_IN_ENUM('value', 'val1', 'val2', 'val3') which return true if 'value' is in ('val1', 'val2', 'val3'). I know I can do SELECT 'value' IN ('val1', 'val2', ...
1
vote
3answers
232 views

How to pass variable argument parameter to another function?

Short version: How can I pass the contents represented by ... in a variable argument function to another function without first parsing it into a va_list? Long version: Below are two functions in a ...
4
votes
1answer
127 views

Passing varargs in a secondary constructor

I have a class with a constructor which consists of a Charset and a vararg of type String. I want a convenience constructor with just the vararg that will call the main constructor with a the ...
9
votes
1answer
273 views

Checking for varargs type ascription in Scala macros

Suppose I have this macro: import language.experimental.macros import scala.reflect.macros.Context object FooExample { def foo[A](xs: A*): Int = macro foo_impl[A] def foo_impl[A](c: Context)(xs: ...
0
votes
3answers
125 views

How to put current method's parameter into a list

I have two methods like public void login(String userName, String password) { } public void login(String userName, String password, Object loginOption) { } and I hope to get all of them soloved ...
2
votes
2answers
101 views

Creating a Parameters class using Generics

I have an interface that defines a method that does some computation public interface Computable { public Result compute(Foo foo); } I want to also pass in a set of arguments to the ...
8
votes
2answers
131 views

what happens if I pass a struct to a vararg function?

void f(...){ //whatever } struct somestruct{ size_t a, b, c; }; int main() { somestruct s; f(s); //what is actually passed? } Is the entire struct copied and passed on the stack? ...
1
vote
1answer
121 views

What is the type of a variable-length argument list in Scala?

Suppose that I declare a function as follows: def test(args: String*) = args mkString What is the type of args?

1 2 3 4 5 7