vote up 5 vote down star
3

I wrote a function along the lines of this:

void myFunc(myStruct *&out) {
    out = new myStruct;
    out->field1 = 1;
    out->field2 = 2;
}

Now in a calling function, I might write something like this:

myStruct *data;
myFunc(data);

which will fill all the fields in data. If I omit the '&' in the declaration, this will not work. (Or rather, it will work only locally in the function but won't change anything in the caller)

Could someone explain to me what this '*&' actually does? It looks weird and I just can't make much sense of it.

flag

3  
It's C++ syntax, not C – qrdl Sep 15 at 12:49

9 Answers

vote up 1 vote down check

Like others have said, the & means you're taking a reference to the actual variable into the function as opposed to a copy of it. This means any modifications made to the variable in the function affect the original variable. This can get especially confusing when you're passing a pointer, which is already a reference to something else. In the case that your function signature looked like this

void myFunc(myStruct *out);

What would happen is that your function would be passed a copy of the pointer to work with. That means the pointer would point at the same thing, but would be a different variable. Here, any modifications made to *out (ie what out points at) would be permanent, but changes made to out (the pointer itself) would only apply inside of myFunc. With the signature like this

void myFunc(myStruct *&out);

You're declaring that the function will take a reference to the original pointer. Now any changes made to the pointer variable out will affect the original pointer that was passed in.

That being said, the line

out = new myStruct;

is modifying the pointer variable out and not *out. Whatever out used to point at is still alive and well, but now a new instance of myStruct has been created on the heap, and out has been modified to point at it.

link|flag
vote up 16 vote down

The & symbol in a C++ variable declaration means it's a reference.

It happens to be a reference to a pointer, which explains the semantics you're seeing; the called function can change the pointer in the calling context, since it has a reference to it.

link|flag
"...like any other & before a name in C++..." is a bit sloppy. (When said so, it could also be the address-of operator.) Still, good answer. +1 – sbi Sep 15 at 12:51
@sbi: Agreed, I changed it ... Now it's maybe a bit self-referential though. – unwind Sep 15 at 12:52
Better now, I hope. :) A bit academic, since Adriaan's answer has been accepted. – unwind Sep 16 at 12:51
@unwind: I think it's a darn good idea to improve on the answer that's up-voted the most, even when the OP has abandoned the question. SO is searchable, after all, and the next programmer stumbling over this will appreciate your answer nevertheless. – sbi Sep 16 at 19:21
1  
@sbi: I agree, of course. I'd rather be correct than accepted. – unwind Sep 17 at 7:47
vote up 1 vote down

See wikipedia

link|flag
vote up 1 vote down

In C++ it's a reference to a pointer, sort of equivalent to a pointer to pointer in C, so the argument of the function is assignable.

link|flag
vote up 8 vote down

In C and C++, & means call by reference; you allow the function to change the variable. In this case your variable is a pointer to myStruct type. In this case the function allocates a new memory block and assigns this to your pointer 'data'.

In the past (say K&R) this had to be done by passing a pointer, in this case a pointer-to-pointer or **. The reference operator allows for more readable code, and stronger type checking.

link|flag
vote up 0 vote down

MyClass *&MyObject

Here MyObject is reference to a pointer of MyClass. So calling myFunction(MyClass *&MyObject) is call by reference, we can change MyObject which is reference to a pointer. But If we do myFunction( MyClass *MyObject) we can't change MyObject because it is call by value, It will just copy address into a temporary variable so we can change value where MyObject is Pointing but not of MyObject.

so in this case writer is first assigning a new value to out thats why call by reference is necessary.

link|flag
vote up 4 vote down

This looks like you are re-implementing a constructor!

Why not just create the appropriate constructor?
Note in C++ a struct is just like a class (it can have a constructor).

struct myStruct
{
    myStruct()
        :field1(1)
        ,field2(2)
    {}
};

myStruct*  data1 = new myStruct;

// or Preferably use a smart pointer
std::auto_ptr<myStruct>   data2(new myStruct);

// or a normal object
myStruct    data3;
link|flag
Indeed, I was re-implementing a constructor. Thank you for the tip! – Paperflyer Sep 16 at 10:51
I may not have answered the question you asked. But I gave you the answer to the question you should have asked. That's worth another vote. – Martin York Sep 16 at 16:22
vote up 1 vote down

As with most data types in C++, you can read it right-to-left and it'll make sense.

myStruct *&out

out is a reference (&) to a pointer (*) to a myStruct object. It must be a reference because you want to change what out points at (in this case, a new myStruct).

link|flag
vote up 2 vote down

It may be worthwhile to explain why it's not &*, but the other way around. The reason is, the declarations are built recursively, and so a reference to a pointer builds up like

& out // reference to ...
* (& out) // reference to pointer

The parentheses are dropped since they are redundant, but they may help you see the pattern. (To see why they are redundant, imagine how the thing looks in expressions, and you will notice that first the address is taken, and then dereferenced - that's the order we want and that the parentheses won't change). If you change the order, you would get

* out // pointer to ...
& (* out) // pointer to reference

Pointer to reference isn't legal. That's why the order is *&, which means "reference to pointer".

link|flag

Your Answer

Get an OpenID
or

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