10
votes
9answers
2k views
pass by reference or pass by value?
When learning a new programming language, one of the possible roadblocks you might encounter is the question whether the language is, by default, pass-by-value or pass-by-reference …
1
vote
3answers
54 views
DataGridView: Pass by Value or Reference?
I think of DataGridView's as being memory hogs. Is it better to pass by value a datagridview or by reference? Should it even be passed at all?
1
vote
6answers
111 views
Const correctness for value parameters
I know there are few question about const correctness where it is stated that the declaration of a function and its definition do not need to agree for value parameters. This is be …
6
votes
4answers
202 views
Pretending .NET strings are value type
In .NET, strings are immutable and are reference type variables. This often comes as a surprise to newer .NET developers who may mistake them for value type objects due to their be …
0
votes
2answers
221 views
Visual Basic 6.0 Passing by Value Reference difference
In the following code, I get a compile time error because i is treated as a variant. The error is: "ByRef Argument type mismatch.".
But if I pass the parameters ByVal, there is n …
2
votes
1answer
76 views
Complex object initialization scope issues with nested functions
OK, so I'm trying to use S4 classes to build a very complex object, with slots including a half-dozen matrices, a few lists, and probably a kitchen sink or two in there. The object …
2
votes
4answers
175 views
Are Python’s bools passed by value?
I sent a reference to a bool object, and I modified it within a method. After the method finished it's execution, the value of the bool outside the method was unchanged.
This lead …
9
votes
8answers
2k views
Is it better in C++ to pass by value or pass by constant reference?
Is it better in C++ to pass by value or pass by constant reference?
I am wondering which is better practice. I realize that pass by constant reference should provide for better p …
43
votes
21answers
6k views
Is Java pass by reference?
I always thought Java was pass by reference, however I've seen a couple of blog posts (e.g. this blog) that claim it's not. I don't think I understand the distinction they're makin …
1
vote
3answers
373 views
How to pass a variable by value to an anonymous javascript function?
The Objective
I want to dynamically assign event handlers to some divs on pages throughout a site.
My Method
Im using jQuery to bind anonymous functions as handlers for selecte …
3
votes
5answers
494 views
Emulating pass-by-value behaviour in python
I would like to emulate the pass-by-value behaviour in python. In other words, I would like to make absolutely sure that the function I write do not modify user supplied data.
On …
5
votes
7answers
480 views
C#: What is the use of “ref” for Reference-type variables?
I understand that if I pass a value-type (int, struct etc...) as a parameter (without the ref keyword), a copy of that variable is passed to the method, but if I use the ref keywor …
0
votes
4answers
101 views
is PHP and C++ the only 2 places that we need to careful about what looks like pass-by-value is indeed pass-by-reference?
is PHP and C++ the only 2 places that we need to careful about passing a simple data type variable as a function argument and the value can be changed?
such as
$count = 2;
foo($c …
2
votes
6answers
208 views
How do I pass lots of variables to and from a function in Python?
I do scientific programming, and often want to show users prompts and variable pairs, let them edit the variables, and then do the calulations with the new variables. I do this so …
3
votes
5answers
769 views
Java is NEVER pass-by-reference, right?…right???
I found an unusual Java method today:
private void addShortenedName(ArrayList<String> voiceSetList, String vsName)
{
if (null == vsName)
vsName = "";
else
…
