Tagged Questions
The by-reference tag has no wiki summary.
11
votes
9answers
4k views
C# - Does foreach() iterate by reference?
Consider this:
List<MyClass> obj_list = get_the_list();
foreach( MyClass obj in obj_list )
{
obj.property = 42;
}
Is 'obj' a reference to the corresponding object within the list so that ...
6
votes
11answers
2k views
Is there any way to pass an anonymous array as an argument in C++?
I'd like to be able to declare an array as a function argument in C++, as shown in the example code below (which doesn't compile). Is there any way to do this (other than declaring the array ...
5
votes
6answers
110 views
python list by value not by reference
Let's take an example
a=['help', 'copyright', 'credits', 'license']
b=a
b.append('XYZ')
b
['help', 'copyright', 'credits', 'license', 'XYZ']
a
['help', 'copyright', 'credits', 'license', 'XYZ']
I ...
5
votes
5answers
458 views
Is it a bad practice to pass structs by reference?
I usually save serialized structs to my database, so
I pass them by reference a lot!
Is that a bad practice?
3
votes
5answers
1k views
How do I persist a ByRef variable into .net winforms dialog form?
I am creating a "department picker" form that is going to serve as a modal popup form with many of my "primary" forms of a Winforms application. Ideally the user is going to click on an icon next to a ...
2
votes
3answers
113 views
Pass parameter by reference vs use Instance variable
I started to read a book about C++ and found the following code.
It is an example on how you can send pass parameters by reference.
#include <iostream>
void swap(int &x, int &y);
...
2
votes
3answers
602 views
Classic asp: Function call by reference doesn't work with an array
I have an array witch I pass to a function by reference to sort it. However, seems like the array is passed byval. Can anyone solve what's the problem? (Also sort workarounds accepted)
1) The ...
2
votes
3answers
202 views
Interfaces with structs, by reference using Generics
Sorry guys! i am so into the code! that i forgot to put the compiler errors.
Here is a new version of the code simplified!
And this are the errors:
Error 1 The best overloaded method match for ...
2
votes
5answers
707 views
How can I use array-references inside arrays in PHP?
I want to be able to do the following:
$normal_array = array();
$array_of_arrayrefs = array( &$normal_array );
// Here I want to access the $normal_array reference **as a reference**,
// ...
1
vote
3answers
93 views
&rhs != this, compare a reference to a pointer?
this is an assignment operator. &rhs != this is confusing. my questions: rhs is a reference of Message type. What does &rhs mean? what does & do (a memory address of a reference?)?
Another ...
1
vote
4answers
73 views
What happens on the stack with ref parameters in c#?
Im reading some C# documentation about WCF and IDispatchMessageInspector and the interface defines a 'Message' object that is passed by reference so that it can be manipulated.
What actually happens ...
1
vote
5answers
133 views
Python practices: arguments passed by “reference”
Consider an instance of a class:
class Car(object):
def __init__(self):
self.engine = None
And a function that modifies that instance:
def add_engine(car):
car.engine = 'V6'
...
1
vote
2answers
98 views
Transitive value assignation in Python classes
I don't think it can be done easily, but here is the thing:
Assume you have a simple class like this:
class Demo:
a = 'to update'
b = a
As you can see, I want the variable 'b' to be ...
1
vote
1answer
363 views
Please help with C++ syntax for const accessor by reference
Right now my implementation returns the thing by value. The member m_MyObj itself is not const - it's value changes depending on what the user selects with a Combo Box. I am no C++ guru, but I want to ...
1
vote
2answers
1k views
How do I pass a Generic::List by reference?
In an attempt to wrap some unmanaged code in a managed .dll I'm trying to convert a Generic::List of data points into a std::vector. Here's a snippet of what I'm trying to do:
namespace ManagedDLL
{
...
0
votes
3answers
973 views
PHP recursive function + array by reference = headache
I have an interesting problem. The basis of the problem is that my last iteration of an array reference doesn't
seem to "stick," if you will. A little context: I've devised a very simple data ...
0
votes
2answers
986 views
PHP: Use variable name to call static function on Singleton Object
I need to call a static function from an object using the Singleton design, but using a variable as the class name.
The best way, $class::getInstance();, is only available in PHP 5.3, and the other ...
0
votes
3answers
303 views
modifying a function parameter (a pointer) from within the application
This is a question based on C code for Win32.
In one of my functions I have the following code:
void SeparateStuff()
{
HGLOBAL hMem;
IStream* pStream;
Status result;
unsigned char* ...
0
votes
4answers
2k views
PHP by-reference parameters and default null
Let's say we have a method signature like
public static function explodeDn($dn, array &$keys = null, array &$vals = null,
$caseFold = self::ATTR_CASEFOLD_NONE)
we can easily call the ...
0
votes
2answers
494 views
Using arrays by reference in PHP
Why is the following code "crashing" in PHP?:
$normal_array = array();
$array_of_arrayrefs = array( &$normal_array );
end( $array_of_arrayrefs )["one"] = 1; // choking on this one
The ...