I recently came along this line of code:

CustomData_em_free_block(&em->vdata, &eve->data);

And I thought, isn't:

a->b

just syntactic sugar for:

(*a).b

With that in mind, this line could be re-written as:

CustomData_em_free_block(&(*em).vdata, &(*eve).data);

If that's the case, what is the point of passing in

&(*a), as a parameter, and not just a? It seems like the pointer equivalent of -(-a) is being passed in in, is there any logic for this?

Thank you.

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

This:

&(*em).vdata

is not the same as this:

em.vdata

It is the same as this:

&((*em).vdata)

The ampersand takes the address of vdata, which is a member of the struct pointed to by em. The . operator has higher precedence than the & operator.

link|improve this answer
1  
On a totally unrelated note, I find it near impossible to take anyone on here seriously with all of these unicorns. – James McNellis Apr 1 '10 at 4:02
But James, they're '-~*unicorns*~-'. <:D – GManNickG Apr 1 '10 at 4:03
I agree with the unicorn part. Anyway, that makes sense. So in that case: (&(*a)).b is the same as: a.b, but without the extra () in there to change the order of operations, the dot product happens first, right? Thank you. – Leif Andersen Apr 1 '10 at 4:04
@Leif Andersen: Yes, (&(*a)) == a; that's the meaning of those two operators. And yes, the . has higher precedence than the &. It's not a dot product, though - it's the member selection operator. – Jefromi Apr 1 '10 at 4:14
@Leif Andersen: You can google around for C operator precedence; here's the table on wikipedia: en.wikipedia.org/wiki/… – Jefromi Apr 1 '10 at 4:17
show 3 more comments
feedback

Here's what you're missing: &em->vdata is the same as &(em->vdata), not (&em)->vdata. That is, it's the address of the vdata member of the structure pointed to by em. This should be clear if you look at the type of em - it's a pointer.

Yes, you can always rewrite a_ptr->member as (*a_ptr).member, but why bother? That's the point of the syntactic sugar.

link|improve this answer
feedback

"If that's the case, what is the point of passing in &(*a), as a parameter, and not just a?"

Usually none. But notice that your sample code doesn't compare &(*a) and a. Your sample code compares &(*a) and b, where b is offset from a by whatever the distance is from the start of em to em's vdata member.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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