Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Under which circumstances would you want to use code of this nature in c++?

void foo(type *&in) {...}

void fii() {
  type *choochoo;
  ...
  foo(choochoo);
}
share|improve this question
1  
Ummm... never??? – dasblinkenlight Apr 20 '12 at 4:13
if you need to return a pointer - better use a return value – littleadv Apr 20 '12 at 4:15
2  
Can you expound on why? This commend is not very helpful. My question is quite legit. This is currently being used in production code. I just don't fully understand why. – Matthew Hoggan Apr 20 '12 at 4:15
David sums it up quite nicely. The pointer itself is being modified. – chris Apr 20 '12 at 4:16

2 Answers

up vote 15 down vote accepted

You would want to pass a pointer by reference by if you have a need to modify the pointer rather than the object that the pointer is pointing to.

This is similar to why double pointers are used; using a reference to a pointer is slightly safer than using pointers.

share|improve this answer
3  
So similar to a pointer of a pointer, except one less level of indirection for pass-by-reference semantics? – user166390 Apr 20 '12 at 4:15
That's precisely right :) – David Z. Apr 20 '12 at 4:17

I have had to use code like this to provide functions to allocate memory to a pointer passed in and return its size because my company "object" to me using the STL

 int iSizeOfArray(int* &piArray) {
    piArray = new int[iNumberOfElements];
    ...
    return iNumberOfElements;
 }

It is not nice, but the pointer must be passed by reference (or use double pointer). If not, memory is allocated to a local copy of the pointer if it is passed by value which results in a memory leak.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.