Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
754 views

Python, default keyword arguments after variable length positional arguments

I thought I could use named parameters after variable-length positional parameters in a function call, but I get a syntax error when importing a python class I'm writing with the following "get" ...
4
votes
1answer
416 views

C++ Extract std::string from a variable-length argument list

Hey everyone! I'm trying to make a simple copy of sprintf that returns the formatted string, but I am coming into a small snag... Apparently, using a variable-length argument list you cannot pass a ...
3
votes
3answers
70 views

Repeated use of a variadic function argument doesn't work

I have a function that tries to log stuff to the console and also to a log file, but it doesn't work. The second use of the variable length argument gives garbage written to the console. Any ideas? ...
3
votes
3answers
536 views

How can I format a std::string using a collection of arguments?

Is it possible to format std::string passing a set of arguments? Currently I am formatting the string this way: string helloString = "Hello %s and %s"; vector<string> tokens; //initialized ...
2
votes
2answers
172 views

calling exec with a variable number of arguments?

I have a program which forks off other processes. The arguments to my program include the process name of the process to be forked, along with any arguments. This means, when I make the call to ...
2
votes
2answers
309 views

Variable length argument list - How to understand we retrieved the last argument?

I have a Polynomial class which holds coefficients of a given polynomial. One of its overloaded constructors is supposed to receive these coefficients via variable argument list. template <class ...
2
votes
5answers
383 views

PHP variable length arguments?

In Python and others, there's special syntax for variable length argument lists: def do_something(*args): # do something do_something(1, 2, 3, 4, 5, ...) # arbitrarily long list I was reading ...
2
votes
4answers
400 views

How to count the number of arguments passed to a function that accepts a variable number of arguments?

How to count the no of arguments passed to the function in following program: #include<stdio.h> #include<stdarg.h> void varfun(int i, ...); int main(){ varfun(1, 2, 3, 4, 5, 6); ...
1
vote
7answers
46 views

PHP - Pass array as variable-length argument list

I have really simple problem in my PHP script. There is a function defined which takes variable length argument list: function foo() { // func_get_args() and similar stuff here } When I call it ...
1
vote
3answers
196 views

Powershell arguments list passing like -a <args list> -d <args list>

I want to write a powershell ps1 script, which needs 2 argument sets,(-a -d) and each can have upto n attributes. How to implement that? example : DoTheTask -a <task name 1> <task name 2> ...
1
vote
3answers
113 views

using *args in struct.pack

I just read about the *args and **kwargs notation in python and decided to use it with my functions that use struct.pack as such: def pack_floats(*args): return struct.pack('%df' %len(args), ...
1
vote
1answer
131 views

Using named arguments with variable length un-named arguments in Python

I apologize if this question has already been asked/answered, I would have expected that to be the case but was unable to find any related questions... I'd like to create a python function that takes ...
1
vote
1answer
295 views

How to create a function and pass in variable length argument list?

We can create a function p in the following code: var p = function() { }; if (typeof(console) != 'undefined' && console.log) { p = function() { console.log(arguments); }; } but the ...
0
votes
1answer
26 views

Writing a Java class for the creation of CardLayouts for my program

I have a tabbed view in my program and under each tab I have several panels which I rotate between with buttons. I've decided to implement a CardLayout for each one of these tabs, and given that I ...
0
votes
0answers
17 views

Data structures: close-to-O(1) search for a variable-length set of matching criteria, returning list, and not just first entry

I have a structure, where a single member can be looked up by multiple criteria; it is used for storing wildcard/parameter pairs, and for storing data/result pairs which were matched to one or ...
0
votes
1answer
54 views

json chop my array's length

I try to pass an array to json. However, when the array has more than 96 elements, it automatically remove the rest elements. no error message. I don't know why? For examples, if I define pids ...
0
votes
2answers
186 views

convert va_list to fixed arguments

I am writing a thread spawning function of the prototype: void Thread_create(void (*func)(void*), int argc, ...); I have passed the argument count in so there is no problem determining the length. ...
0
votes
2answers
106 views

how could computer knows how many arguments will be followed?

how could computer knows how many arguments will be followed? we put the arguments in reverse order because there is sort of printf function which takes undefined number of arguments. in case of ...
0
votes
3answers
115 views

Overloading in C or not?

How does Variable Length Argument lists functions like printf() , scanf(), etc in C differ from Function Overloading in C++? And how does the call printf("Didnt Work %s",s); differ from ...
0
votes
3answers
277 views

Ruby method with maximum number of parameters

I have a method, that should accept maximum 2 arguments. Its code is like this: def method (*args) if args.length < 3 then puts args.collect else puts "Enter correct number of ...
0
votes
2answers
302 views

Problem with variable argument function in C++

I'm trying to create a variable length function (obviously, heh) in C++, and what I have right now works, but only for the first argument. If someone could please let me know how to get this working ...
-3
votes
3answers
89 views

Overloaded method and ambiguity [closed]

A couple of month ago I wrote a simple program in Java. I have two overloaded methods called F and one of them takes variable length argument. This program will not compile, because calling F(4) in ...