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 …
6
votes
13answers
330 views
Best way to return early from a function returning a reference
Let us say we have a function of the form:
const SomeObject& SomeScope::ReturnOurObject()
{
if( ! SomeCondition )
{
// return early
return ;
}
…
1
vote
3answers
50 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?
6
votes
4answers
201 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 …
1
vote
7answers
157 views
Using REF & OUT keywords with Passing by Reference & Passing by Value in C#
Here is what I understand so far:
PASS BY VALUE
Passing by value means a copy of an argument is passed.
Changes to that copy do not change the original.
PASS BY REFERENCE
Pass …
0
votes
2answers
220 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 …
1
vote
3answers
108 views
How to get the value of a value passed by reference in C++
I have a function with the following declaration:
void cleanValid(int valid[][4], int &size, int index);
In implementation of this function I need to set another counter equ …
4
votes
7answers
159 views
Teaching References in C#
In a couple of weeks, I'll be teaching a class of first-year engineers the salient points of references in C# as part of their first-year programming course. Most of them have nev …
0
votes
2answers
89 views
Passing By ref and out
So if I am iterating using a foreach loop and I have a function inside that takes an argument of the object iterated from list, and lets say i set its value to be different.
Why do …
0
votes
5answers
50 views
Trimming string variables by reference in PHP5
I saw another post suggesting using this statement to trim string variables contained in the array:
$_POST=array_map('trim', $_POST);
However, if in the first place, the strings …
0
votes
3answers
166 views
C# and storing reference to method parameter
For a little background information, I've got an application that's running in a loop, and over ever tick it calls a method Tick. There's a bunch of classes that extend a base cla …
0
votes
4answers
169 views
Can I pass a simple value by reference in ColdFusion?
By default, ColdFusion passes simple types (like numeric, string, and GUID) by value to functions. I'd like to pass a simple type by reference.
I'm currently wrapping a simple …
1
vote
7answers
279 views
Confusion between passing and modifying char pointers in C (reference vs. value)
Hi,
I was wondering if you could help me out with a C string problem I don't quite understand. I have a function to which I send 3 char pointers. Within this function, the char poi …
-1
votes
2answers
63 views
some kind off variable problem within php class
Hello,
I have this in my class
When the second function is called php errors with
wrong datatype and only variables can be past by reference.
I don't know what they mean by that …
1
vote
3answers
84 views
Assign a C++ out reference to something that was destroyed?
Hello,
So I'm looking through some code, and I see this:
class whatever
{
public:
void SomeFunc(SomeClass& outVal)
{
outVal = m_q.front();
m_q.pop(); …
