Tagged Questions
The argument-passing tag has no wiki summary.
25
votes
2answers
246 views
Is it a good idea to use a switch with fallthrough to handle default arguments in Javascript?
I have recently learned that you can use a switch statement with fallthrough to set default arguments in Javascript:
function myFunc(arg1, arg2, arg3) {
switch (arguments.length) {
case 0 ...
22
votes
5answers
8k views
Are there benefits of passing by pointer over passing by reference in C++?
Are there benefits of passing by pointer over passing by reference in C++?
Lately, I have seen a number of examples that pass the a pointer instead of passing by reference. Are there benefits to ...
9
votes
4answers
194 views
How to declare two functions taking each other's signature as argument?
Is it possible to emulate something like this:
typedef boost::function<void(A)> B;
typedef boost::function<void(B)> A;
The main goal is to be able to write code like this (in ...
8
votes
2answers
167 views
Argument passing strategy - environment variables vs. command line
Most of the applications we developers write need to be externally parametrized at startup. We pass file paths, pipe names, TCP/IP addresses etc. So far I've been using command line to pass these to ...
8
votes
3answers
315 views
Is there a way to use two '…' statements in a function in R?
I want to write a function that calls both plot() and legend() and it would be ideal if the user could specify a number of additional arguments that are then passed through to either plot() or ...
8
votes
8answers
8k views
How do I pass a hash to a function in Perl?
I am having a lot of trouble. I have a function that takes a variable and an associative array, but I can't seem to get them to pass right. I think this has something to do with function declarations, ...
7
votes
6answers
331 views
Javascript Find argument passed to a function
I am needing to find the argument passed to a function from the function.
Let us suppose I have a function called foo:
function foo() {
var a = 3;
var b = "hello";
var c = [0,4];
bar(a - b ...
7
votes
3answers
637 views
How do I pass arguments to C++ functions when I call them from inline assembly
So, I would like to be able to call functions from a c++ dll.
For certain reasons, I would like to call them from an __asm block in my C++ code.
My question is this: I know that before I call the ...
6
votes
2answers
117 views
Argument forwarding in LLVM
I need some advice on "forwarding" arguments to a callee (in the LLVM-IR).
Suppose I have a function F that is called at the beginning of all other functions in the module. From F I need to access ...
6
votes
7answers
1k views
Difference of function argument as (const int &) and (int & a) in C++
I know that if you write void function_name(int& a), then function will not do local copy of your variable passed as argument. Also have met in literature that you should write void ...
5
votes
4answers
129 views
Will a good C++ optimize a reference away?
I want to write a template function that does something with a std::stack<T> and an instance of T, e.g.:
template<class StackType> inline
bool some_func( StackType const &s, typename ...
5
votes
1answer
76 views
How to pass variadic arguments while adding another one in Scala?
Consider such methods:
def clearlnOut(coll : Any*)
{
clearOut(coll:_*,"\n") // error
}
def clearOut(coll : Any*)
{
...
The compiler says:
error: no `: _*' annotation allowed here (such ...
5
votes
1answer
97 views
Problems passing arguments with callNextMethod() in R
My question:
Why is callNextMethod() not passing arguments as expected to the next method?
Situation:
Say I have two hierarchical classes foo and bar (bar is subclass of foo) for which I have a ...
5
votes
2answers
274 views
How can I pass <arguments> to IRB if I don't specify <programfile>?
Since:
irb --help
Usage: irb.rb [options] [programfile] [arguments]
I know I can pass arguments to ARGV if I include a programfile
eg:
irb test.rb A B C
where test.irb is simply "p ARGV"
...
5
votes
6answers
182 views
Array as a parameter
I have created an array:
CString* pstrArray = new CString[nMySize];
Now how can I pass it to a function to be filled up? What is the actual parameter?
void FillThisArray(what goes here?)
{
}
5
votes
5answers
294 views
How can multiple variables be passed to a function cleanly in C?
I am working on an embedded system that has different output capabilities (digital out, serial, analog, etc). I am trying to figure out a clean way to pass many of the variables that will control ...
5
votes
3answers
2k views
R: Pass by reference
Can you pass by reference with "R" ?
for example, in the following code:
setClass("MyClass",
representation(
name="character"
))
instance1 <-new("MyClass",name="Hello1")
instance2 ...
5
votes
3answers
251 views
Cost of using repeated parameters
I consider refactoring few method signatures that currently take parameter of type List or Set of concrete classes --List[Foo]-- to use repeated parameters instead: Foo*.
Update: Following ...
5
votes
5answers
186 views
Hashes vs. Multiple Params?
It is very common in Ruby to see methods that receive a hash of parameters instead of just passing the parameters to the method.
My question is - when do you use parameters for your method and when ...
5
votes
4answers
7k views
How can I pass command-line arguments via file association in Vista 64?
How can one pass command line arguments via file association in Vista 64?
I recently built a PC running Vista Ultimate 64-bit. I noticed several of the Perl scripts I transferred failed due to ...
4
votes
2answers
44 views
Pass optional argument from parent to child in Ruby
There must be a DRY way to do this without two separate calls to File.open, and without peeking at what File.open's default value for permissions is. Right?
def ensure_file(path, contents, ...
4
votes
2answers
117 views
Passing argument into backgroundWorker (for use as a Cancel button)
I'm new to C# and object-oriented programming in general. I've been trying to implement a "Cancel" button into my GUI so that the user can stop it mid-process.
I read this question: How to implement ...
4
votes
3answers
34 views
Variable-length by-ref argument lists in functions
In PHP you can do this:
function something() {
foreach (func_get_args() as $arg)
echo $arg;
}
something(1, 3); //echoes "13"
This works fine for arguments passed by value, but what if I want ...
4
votes
2answers
86 views
Is there any easier way of creating overload for methods in C#?
This is a general programming doubt rather than a specific one. But I would state it with an example. Suppose I'm creating a MessageBox class of mine own, and I want .Show() method to be implemented ...
4
votes
2answers
449 views
CodeIgniter: Passing Arguments from View to Controller?
EDIT: With the code below now, I am unsure on how to print out the bookmarks and the tags correctly
I’m completely new to CI and I have recently hit a road block. I’m very unsure how I would go ...
4
votes
4answers
91 views
Which identifier variable is better to pass as an argument to a method?
Suppose the following method:
public void ShareClassStuff(int shareClassId)
{
var shareClass = _shareClassService.GetShareClassById(shareClassId);
(if shareClass != null)
var ...
4
votes
8answers
342 views
Best practices for number of arguments for subroutines in C
I've recently started working on developing APIs written in C. I see some subroutines which expect 8(Eight) parameters and to me it looks ugly and cumbersome passing 8 parameters while calling that ...
4
votes
4answers
568 views
Convert c++ argument to int
I have a small c++ program that needs to get and argument and convert it to an int. Here is my code so far:
#include <iostream>
using namespace std;
int main(int argc,int argvx[]) {
int ...
4
votes
4answers
535 views
JavaScript variable number of arguments to function
Is there a way to allow "unlimited" vars for a function in JavaScript?
Example:
load(var1, var2, var3, var4, var5, etc...)
load(var1)
4
votes
1answer
982 views
pass arguments between shell scripts but retain quotes
How do I pass all the arguments of one shell script into another? I have tried $*, but as I expected, that does not work if you have quoted arguments.
Example:
$ cat script1.sh
#! /bin/sh
...
4
votes
3answers
277 views
Function Decorators
I like being able to measure performance of the python functions I code, so very often I do something similar to this...
import time
def some_function(arg1, arg2, ..., argN, verbose = True) :
t ...
3
votes
1answer
71 views
How to pass a function and its arguments through a wrapper function in R? Similar to *args and *kwargs in python
I want to write a wrapper function in R. I should take a function and its arguments. Do something, and then call the function with the supplied arguments.
I know how to do it in python, but I search ...
3
votes
7answers
104 views
Why is list when passed without ref to a function acting like passed with ref?
If I did not get this terribly wrong, this behaviour is strange for me. Rather than explaining, I'll post a sample code below and please tell me why does I get output x and not y.
private void ...
3
votes
4answers
112 views
How to call overloaded methods having optional parameters without ambiguity for compiler?
I have a static function in a class with two overloads. Both the overloads are quite the same with the exception of one or two parameters. string body is the only necessary parameter in my function ...
3
votes
2answers
176 views
Understanding the return value of spawn
I'm getting started with Erlang, and could use a little help understanding the different results when applying the PID returned from spawn/3 to the process_info/1 method.
Given this simple code where ...
3
votes
5answers
404 views
Is there a difference between main(String args[]) and main(String[] args)?
Is there a difference between:
public void main(String args[]) { ... }
and
public void main(String[] args) { ... }
I don't believe so, but I am wondering.
3
votes
1answer
47 views
inside a macro, can I have ,var evaluate to blank/nothing?
Thanks to previous answers on common lisp: how can a macro define other methods/macros with programmatically generated names? I have a macro that defines helper functions (actually I have a macrolet, ...
3
votes
2answers
279 views
c# Generics: Passing List<string> to a method that expects a List<T>
I've had my first foray into generics, and understand them a little bit. I have a method intended to accept two lists of any object, match them various ways and return the matched/unmatched objects ...
3
votes
6answers
232 views
Python: How to pass arguments to the __code__ of a function?
The following works:
def spam():
print "spam"
exec(spam.__code__)
spam
But what if spam takes arguments?
def spam(eggs):
print "spam and", eggs
exec(spam.__code__)
TypeError: ...
3
votes
3answers
91 views
How many arguments is a reasonable number, big objects vs atomic arguments. OOP
i'm a novel developer and i would like to know in yours experience what is the better approach when your building class methods, and if there is not a better approach, how balance your decisions with ...
3
votes
2answers
979 views
Clojure Keyword and Optional Argument Problem
I want to create a function that takes in a required argument x, and either a optional argument opt1 OR a keyword argument opt2.
Right now I have
(defn foo x & [opt1 {:keys [opt2]}]
...
But ...
3
votes
5answers
1k views
Order of default and non-default arguments
In Python, I understand that default arguments come at the end and that non-default arguments cannot follow a default argument. That is fine. Like for example:
>>> def foo(x=0, y):
...
3
votes
1answer
2k views
Django return redirect() with parameters
In my view function I want to call another view and pass data to it :
return redirect('some-view-name', backend, form.cleaned_data)
, where backend is of registration.backends object, and ...
3
votes
2answers
649 views
Passing an empty IEnumerable argument to a method
I have this method (simplified):
void DoSomething(IEnumerable<int> numbers);
And I invoke it like this:
DoSomething(condition==true?results:new List<int>());
The variable results is ...
3
votes
5answers
388 views
how to create a string literal as a function argument via string concatenation in c
I need to pass a string literal to a function
myfunction("arg1" DEF_CHAR "arg1");
now part of that constructed string literal needs to be a function return
stmp = createString();
myfunction("arg1" ...
3
votes
1answer
390 views
Pointer argument to boost python
What's the best way to make a function that has pointer as argument work with boost python?
I see there are many possibilities for return values in the docs, but I don't know how to do it with ...
3
votes
3answers
311 views
Executing a command from C++, What is expected in argv[0]?
I am using execv() to run commands from /bin/ such as 'ls', 'pwd', 'echo' from my c++ program, and I am wondering what value I should provide in argv[0];
const char * path = getPath();
char ** argv = ...
3
votes
4answers
996 views
Java variable number or arguments for a method
Can you tell me if I am correct in this question? It's a homework question, I don't want the answer. I just want to make sure that I am correct.
It is possible to declare a method that will allow a ...
3
votes
3answers
799 views
Pass multiple files / folders from windows explorer to external application
Hi does anyone know how to get windows explorer to pass multiple files / folders through to an external app (c#) referenced in the registry?
I am current able to act upon a single file / folder using ...
3
votes
3answers
2k views
Passing a touch event to all subviews of a View Controller
I have a view controller which creates multiple subviews on top of it. All subviews and the view controller accept touches. How can i communicate the touch point information to all the subviews on ...