0
votes
3answers
60 views
iterating over map and array simultaneously in a for loop
I am having some trouble creating a for loop within a constructor to iterate over a map and an array at the same time. Here, it is indicated that this cannot be done with an enhanc …
1
vote
5answers
153 views
Variable arguments in C, how to get values with a generic type?
Hi guys, I'm trying to use C stdarg.h lib, with a generic type.
The type int, is my generic type > to understand it, please, hold reading.
So, my problem is:
I have a function tha …
3
votes
3answers
101 views
Java: varargs and the ‘…’ argument
Hello,
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 …
2
votes
9answers
264 views
Variable number of arguments in C++?
How can I write a function that accepts a variable number of arguments? Is this possible? How?
2
votes
4answers
166 views
Variable number of parameters in function in C++
How I can have variable number of parameters in my function in C++.
Analog in C#:
public void Foo(params int[] a) {
for (int i = 0; i < a.Length; i++)
Console.Writ …
5
votes
3answers
139 views
JSR223: Calling Java “varargs” methods from script
Hello,
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:
$myO …
1
vote
4answers
199 views
Function with variable number of args in C and a design-oriented question
I have a C function named SetParams(...) with a variable number of arguments. This function sets up a static data structure (let us name it Data). SetParams is used with pairs of a …
1
vote
1answer
80 views
python varargs before function name?
I'm doing some Python coding in a clients code base and I stumbled on a line of code that looks something like this (the variable names have been changed to protect the innocent):
…
0
votes
2answers
75 views
Is var-args can be used as method argument only???
This is compiling fine :-
public class Demo {
public static void main(String... args) {
}
}
But this is not getting compiled.
public class Demo {
public static v …
0
votes
4answers
91 views
Get vargs’ class type if varg is set to null in Java
How can you get the data type of a variable argument in Java if the varg is set to null? I use the getClass to retrieve the type. Is there any other way?
public void method(String …
3
votes
3answers
77 views
Variable parameter class?
The following code
public static void main(String[] args) {
fun(new Integer(1));
}
static void fun(Object ... a) {
System.out.println(a.getClass());
…
1
vote
5answers
147 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 …
0
votes
2answers
156 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 …
0
votes
1answer
127 views
Unrolling var args in AS3
I'm wondering if there is some way to unpack a variable length argument list in AS3. Take for example this function:
public function varArgsFunc(amount:int, ...args):Array
{
i …
8
votes
4answers
316 views
Var-Args: 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);
…
