The return-by-reference tag has no wiki summary.
12
votes
9answers
2k views
C++: returning by reference and copy constructors
References in C++ are baffling me. :)
The basic idea is that I'm trying to return an object from a function. I'd like to do it without returning a pointer (because then I'd have to manually delete ...
9
votes
6answers
235 views
Overloaded [] operator on template class in C++ with const / nonconst versions
Whew, that was a long title.
Here's my problem. I've got a template class in C++ and I'm overloading the [] operator. I have both a const and a non-const version, with the non-const version returning ...
5
votes
6answers
565 views
Scheme pass-by-reference
How can I pass a variable by reference in scheme?
An example of the functionality I want:
(define foo
(lambda (&x)
(set! x 5)))
(define y 2)
(foo y)
(display y) ;outputs: 5
Also, is ...
4
votes
2answers
327 views
Casting an NSError return to a CFErrorRef return
I have a function that returns an NSError object by reference:
NSData *foo(NSData *foo, NSError *__autoreleasing *outError);
This function uses an API that takes a pointer to storage for a ...
4
votes
5answers
195 views
Returning references from a C++ methods
Dear friends, i'm concerned if i'm making a bad use of references in C++
In the following method GCC complains warning "reference to local variable ‘me’ returned"
MatrizEsparsa& ...
3
votes
3answers
850 views
Prefix/Postfix increment operators
I'm wanting to make sure I understand pass-by-value vs pass-by-reference properly. In particular, I'm looking at the prefix/postfix versions of the increment ++ operator for an object.
Let's suppose ...
2
votes
1answer
101 views
Use of overloaded comparison operator> in C++ in conjunction with a getter function
I'm struggling with a problem concerning the overloading of the binary comparison operator >. By design, it is supposed to compare two cards and return either 1 (if the left-hand-side argument is ...
2
votes
3answers
269 views
VB.NET, Is Object Returned by Reference from Function
This should be a fairly common question, but I haven't found a straightforward answer anywhere.
If I instantiate an object within a function in VB.NET and return it, does it return it be reference or ...
1
vote
3answers
63 views
C++ return a class object by reference
I have a class called Object which stores some data.
I would like to return it by reference using a function like this:
Object& return_Object();
Then, in my code, I would call it like ...
1
vote
3answers
72 views
PHP and returning null references (revisited)
I've asked a question before, that essentially took the $null = null approach as a given, to returning a null reference in PHP.
After some cursory Googling, I didn't turn up much; leaving me to ...
1
vote
6answers
69 views
Ignoring a return-by-reference result from a function
Suppose i have a function that returns an important result and several unimportant results. I declared it so that the unimportant results are returned by reference:
int CalculateStuff(int param1, int ...
1
vote
1answer
79 views
PHP variables: references or copies
I'm confused about how PHP variable references work. In the examples below, I want to be able to access the string hello either as $bar[0] or $barstack[0][0]. It would seem that passing the array by ...
1
vote
2answers
89 views
avoid copy by value when initializing reference
I have a function interface:
struct iFace {
virtual Type& getType() = 0;
}
and the idea is to retrieve it like:
iFace& iface = getIface();
Type& type = iface.getType();
however, i ...
1
vote
3answers
90 views
PHP Returning References
Returning by reference is useful when
you want to use a function to find to
which variable a reference should be
bound. Do not use return-by-reference
to increase performance. The engine
...
0
votes
1answer
27 views
Function that accepts a reference to an array, searches the array, and returns a reference to the search result?
I need a function/class-method that finds an element in an array (with the help of another array containing the location of said element) and returns a reference to it.
To no avail I've tried to do ...
0
votes
3answers
72 views
C++: How do I make a copy of a char returned as reference?
If I do
string someString = "hello";
char c = someString[2];
does the c variable refer to a character inside someString, or is it a new independent char on it's own?
If it is not independent, how ...
0
votes
1answer
73 views
Releasing a returned-by-reference NSString causes crash
The following method takes a double pointer to NSString and populates this with a value, as follows:
@implementation Exp
- (int) func:(NSString**) dpStr
{
//------
*dpStr = [self func_2];
...