Tagged Questions

0
votes
3answers
87 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 …
3
votes
9answers
1k views

PHP Variables passed by value or by reference?

I had a Java developer new to PHP ask me this question the other day, so I thought I'd document the answer here. Question: are PHP variables passed by value or by reference?
2
votes
7answers
301 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 with …
0
votes
2answers
92 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 …
0
votes
3answers
144 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; …
3
votes
9answers
345 views

Is there any way to pass an anonymous array as an argument in C++?

Hi all, 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 …
1
vote
2answers
276 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: nam …
2
votes
5answers
481 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 …
0
votes
5answers
183 views

An operator == whose parameters are non-const references

I this post, I've seen this: class MonitorObjectString: public MonitorObject { // some other declarations friend inline bool operator==(/*const*/ MonitorObjectString& …
0
votes
2answers
506 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 c …
0
votes
2answers
269 views

Using arrays by reference in PHP

Hi, Why is the following code "crashing" in PHP?: $normal_array = array(); $array_of_arrayrefs = array( &$normal_array ); end( $array_of_arrayrefs )["one"] = 1; // cho …
3
votes
5answers
803 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 …