Tagged Questions
parameter-passing is the process of assigning values to the parameters of a function
29
votes
3answers
10k views
What does map(&:name) mean in Ruby?
def tag_names
@tag_names || tags.map(&:name).join(' ')
end
Here's the article where I found it.
16
votes
6answers
4k views
C#: Can parameters be constant?
I'm looking for the C# equivalent of Java's final. Does it exist?
Does C# have anything like the following:
public Foo(final int bar);
In the above example, bar is a read only variable and cannot ...
16
votes
5answers
2k views
How can I use “Dependency Injection” in simple php functions, and should I bother?
I hear people talking about dependency injection and the benefit of it all the time, but I don't really understand it.
I'm wondering if it's a solution to the "I pass database connections as ...
13
votes
3answers
169 views
How to determine the type of a function parameter given the type of argument passed to it?
I need a type trait which will report the type of a functor's operator() parameter given the type of the functor and the type of an argument passed to it. Basically, I need to determine precisely ...
13
votes
1answer
142 views
Is parameter binding sequenced after argument evaluation?
Suppose I have the following function:
void foo(std::vector<int> vec, int n);
If I call the function like this:
std::vector<int> numbers { 2, 3, 5, 7, 11, 13, 17, 19 };
...
11
votes
5answers
647 views
How do C++ compilers actually pass reference parameters?
This question came about as a result of some mixed-language programming. I had a Fortran routine I wanted to call from C++ code. Fortran passes all its parameters by reference (unless you tell it ...
11
votes
5answers
6k views
MSBuild passing parameters to CallTarget
I'm trying to make a reusable target in my MSBuild file so I can call it multiple times with different parameters.
I've got a skeleton like this:
<Target Name="Deploy">
<!-- Deploy to a ...
11
votes
4answers
5k views
'pass parameter by reference' in Ruby?
In Ruby, is it possible to pass by reference a parameter with value-type semantics (e.g. a Fixnum)?
I'm looking for something similar to C#'s 'ref' keyword.
Example:
def func(x)
x += 1
end
a = ...
9
votes
5answers
3k views
How can I pass a Class as parameter and return a generic collection in Java?
I am designing a simple Data Access Object for my Java application. I have a few classes (records) that represents a single row in tables like User and Fruit.
I would like to have a single method for ...
9
votes
6answers
1k views
Detect if parameter passed is an array? Javascript [closed]
Possible Duplicate:
How to detect if a variable is an array
I have a simple question:
How do I detect if a parameter passed to my javascript function is an array? I don't believe that I ...
8
votes
2answers
90 views
java configuration/parameter passing design
Often I find the need to engineer objects with configurable functionality.
To exemplify, assume I'm creating a DateIterator. The configurable option(s) might be whether to iterate the closed ...
8
votes
2answers
180 views
Does GCC create typedefs for arrays passed to functions?
While debugging some C code with gdb I came across something I've not seen nor heard of before! The compiler (gcc -O0) seems to have created a new type for passing an array of vectors to a function... ...
8
votes
7answers
235 views
Nicer way of parameter checking?
We use the .NET 2.0 framework with C# 3.0 (I think it's the last version of C# which can run on the 2.0 version of the framework, correct me if I am wrong).
Is there something built into C# which can ...
7
votes
4answers
7k views
WP7: Pass parameter to new page?
In a Windows Phone 7 Silverlight application I call a new page using
NavigationService.Navigate(new Uri("/View/SecondPage.xaml", UriKind.Relative));
Now I want to pass parameters to the new page. ...
7
votes
3answers
320 views
How does @_ work in Perl subroutines?
I was always sure that if I pass a Perl subroutine a simple scalar, it can never change its value outside the subroutine. That is:
my $x = 100;
foo($x);
# without knowing anything about foo(), I'm ...
6
votes
2answers
72 views
What are the differences between parameter inputting mechanisms in Perl?
While reading a downloaded Perl module, I found several ways of defining input parameters, which are listed as following. What are the differences between them?
sub new{
my $class = shift;
my ...
6
votes
2answers
134 views
sql-injection urls, is length of a parameter a security issue?
I'm getting a lot of hits that involve sql injection attempts that involve increasingly long parameters. I am limiting the parameters in php to cast them as positive ints or zero, but I'm not ...
6
votes
1answer
192 views
How do I “connect” a table view to a view controller
Alright, I know this is a vague conceptual question, but I really need help here. Thanks in advance if you decide to take the time to read this. I would never even consider writing this much except ...
6
votes
5answers
494 views
Bash: pass a function as parameter
I need to pass a function as a parameter in Bash. For example, the following code:
function x() {
echo "Hello world"
}
function around() {
echo "before"
eval $1
echo "after"
}
around x
...
6
votes
2answers
2k views
c# - return value from form
I have a main form (let's call it frmHireQuote) that is a child of a main MDI form (frmMainMDI), that shows another form (frmImportContact) via ShowDialog() when a button is clicked.
When the user ...
6
votes
2answers
379 views
Passing char * vs char ** as parameters to a function in C
I've read several discussions of passing char * in C.
stackoverflow: passing-an-array-of-strings-as-parameter-to-a-function-in-c
stackoverflow: how-does-an-array-of-pointers-to-pointers-work
...
6
votes
4answers
189 views
Does it ever make sense for a compiler to pass a structure like this in a cpu register to a function?
I'd like to know if some kind of structure contains more than one primitive but its total size is less than or equal to size of a single cpu register like a 4-byte register, does it ever make sense ...
6
votes
6answers
442 views
Cost of using params in C#
Does anyone have advice for using the params in C# for method argument passing. I'm contemplating making overloads for the first 6 arguments and then a 7th using the params feature. My reasoning is to ...
6
votes
3answers
558 views
Static keyword in function parameter
I've just found this function definition in some embedded code:
float round_float_to_4(static float inputval);
I'm familiar with other uses for static (global variables, functions and local ...
6
votes
3answers
231 views
A general short guideline for passing method parameters by ref or by value ( C#)?
Something like:
if the value of the variable after the method call has to be returned :
if can be instantiated before the method call use ref
if does not need to be instantiated before the call ...
5
votes
3answers
104 views
References as function arguments?
I have a trouble with references.
Consider this code:
void pseudo_increase(int a){a++;}
int main(){
int a = 0;
//..
pseudo_increase(a);
//..
}
Here, the value of variable a will ...
5
votes
2answers
71 views
Javascript Prototype Chaining super class constructor and method calling
I'm a newbie in the JavaScript world, and I came up with this weird problem when i was attempting prototype chaining inheritence.
I have 3 classes
//class parent
function parent(param_1){
...
5
votes
4answers
117 views
Passing data between PHP and C executable in linux
Under Linux ,if I want to pass pure string from PHP to C, how do i do that?
what I've tried do far is:
exec("./myexec.bin -a mystring");
in PHP and
getopt(argc,argv, "a:");
in C
everything ...
5
votes
3answers
171 views
How Do I Pass By Value?
import std.stdio;
class IntegerContainer
{
public int Integer = 1;
}
void DoubleInteger(IntegerContainer Container)
{
Container.Integer *= 2;
}
void main()
{
IntegerContainer Container ...
5
votes
4answers
268 views
C++ “Best” Parameter Passing Method
I was coding up a C++ class today, and I wrote a function that took an argument as a reference rather than a pointer, something I rarely ever do. I've always passed by pointers. So I was about to ...
5
votes
5answers
198 views
Parameter Validation Best Practices
Imagine you have an application which is some kind of front-end to all your business logic. This front-end has a lot of DLLs upon which it depends, and the methods in those DLLs may call each other ...
5
votes
5answers
179 views
How can I pass more than one enum to a method that receives only one?
I'm wondering if the following is possible:
The method Regex.Match can receive an enum, so I can specify:
RegexOptions.IgnoreCase
RegexOptions.IgnorePatternWhiteSpace
RegexOptions.Multiline
What ...
5
votes
6answers
176 views
Possible to use a singleton with a non-default constructor in C#?
This is a slight variance of this question: Possible to use a singleton with a non-default constructor in C#?
I have a class that takes parameters for it's constructor. I would like to make this ...
5
votes
4answers
355 views
Is there a way to omit out parameter?
Assume I have a function with out parameter, however I do not need its value. Is there a way to pass no actual parameter if given result will be thrown away anyway?
Sorry, acutally it turned out to ...
5
votes
1answer
154 views
Definining parameters in F# functions, is it better using tuples?
A simple question... Is it good practice to define a function accepting more than 1 parameter through tuples?
I explain myself better:
I have a function:
let myfunc par1 par2 = ...;;
Is it good to ...
5
votes
4answers
128 views
do not understand closures question in python
def a(b=[]):
b.append(1)
return b
print a()
print a()
All of a sudden i got a list with 2 elems, but how? Shouldn't b be getting set to empty list every time.
Thanks for the help
5
votes
12answers
513 views
Confusion in C++
I'm very new to C++ and I'm currently learning it. I got a few questions..
What is the differences between void DoSomething(const Foo& foo) and void DoSomething(Foo foo)? If we don't specify ...
5
votes
4answers
227 views
Is there a better way to pass by reference in Perl?
I am doing pass-by-reference like this:
use strict;
use warnings;
sub repl {
local *line = \$_[0]; our $line;
$line = "new value";
}
sub doRepl {
my ($replFunc) = @_;
my $foo = "old ...
5
votes
6answers
3k views
Pass by name and pass by value-result languages
For my programming languages course, I'm trying to write some code snippets in languages that use pass by name or pass by value-result, preferably by default, but any language that even supports ...
4
votes
1answer
108 views
How to inspect the types of a function's parameters?
I have an application where I'm building a function, marshal_and_apply, which calls some other function (or functor), f with some arguments. marshal_and_apply's job is to apply some special marshaling ...
4
votes
4answers
94 views
Passing IDisposable as a parameter
Is it a good practice to pass IDisposable as a parameter to a method and dispose it inside that method. This is sort of inevitable when you have to use several threads. Well, the best practices says ...
4
votes
3answers
537 views
How to pass parameters from bash to php script?
I have done a a bash script which run php script. It works fine without parameters but when I add parameters (id and url), there are some errors:
PHP Deprecated: Comments starting with '#' are ...
4
votes
1answer
213 views
Qt: passing variables to subprojects
The structure of my project is as follow:
Proj
Proj.pro
--subProj
--subProj.pro
----subsubProj
----subsubProj.pro
Is there a way i can instance a global variable in subProj.pro and call it en e.g. ...
4
votes
3answers
62 views
VS2008 Passing Variables - struct vs struct components - advantages/disadvantages?
I really hope this isn't one of those super basic questions.
Anyway, I've got a struct with 47 components, and I'm calling various functions that use anywhere from 3 to 10 of these components at ...
4
votes
4answers
157 views
Should i pass an enum as a parameter or pass its literal value
i was thinking along the line when design some interfaces and classes whether i should be passing enum as a parameter or its literal value.
At this juncture, i am all for passing its literal value ...
4
votes
3answers
173 views
PHP Cookies using Variable from URL
I'm no PHP expert and I'm trying to set a cookie that contains a referrer code from the URL. For example: www.example.com?promotioncode=google should set a cookie name promocode, value what ever is ...
4
votes
2answers
139 views
Passing a parameter into an object in curly braces during instantiation in C#
When you pass an variable into an object during instantiation, such as in
SomeObject newObject = new SomeObject() { SomeString = "String goes here" };
will the variable SomeString be accessible in ...
4
votes
1answer
204 views
Python Option Parser: Boolean flag with optional parameters
I'm using optparse.OptionParser to manage arguments for some scripts, and something I was wondering / would like to do is have boolean flags (i.e action=store_true) that can also accept a parameter.
...
4
votes
4answers
276 views
C++: How do I pass a function(without knowing its parameters) to another function?
I'm trying to create a function that will store and repeat another function given as a parameter for a specific amount of time or repeats given.
But when you want to pass a function as a parameter you ...
4
votes
5answers
108 views
How is validating a parameter “high up” on the callstack done?
I've been reading the Framework Design Guidelines book, a book on designing frameworks in .NET, with excerpts from the framework designers on the decisions they made regarding each section (E.g. ...