vote up 6 vote down star

i was learning about c++ pointers... so the "->" operator seemed strange to me... instead of ptr->hello(); one could write (*ptr).hello(); because it also seems to work, so i thought the former is just a more convenient way is that the case or is there any difference?

flag

6 Answers

vote up 12 vote down

Others have already answered regarding built-in pointers. With regards to classes, it is possible to overload operator->(), operator&(), and operator*() but not operator.().

Which means that an object may act differently depending on which syntax you call.

link|flag
2  
Of course, anyone overriding in such a way to make those operations behave differently does deserve to be shot. – Paul Smith Feb 2 at 12:49
vote up 4 vote down

The main advantage in terms of readability comes when you have to chain function calls, i.e.:

ptr->getAnotherPtr()->getAThirdPtr()->print()

I'm not even going to bother doing this with the * operator.

link|flag
vote up 0 vote down

These alternate syntax modes are adopted from C, and you might get some additional understanding from A Tutorial on Pointers and Arrays in C, specifically, chapter 5, Pointers and Structure.

link|flag
vote up 5 vote down

The only reason to have the '->' operator is to make it more convenient and save errors like:

*ptr.hello();

Because it is so easy to forget the parenthesis.

link|flag
vote up 5 vote down

They generate the same exact machine code, but for me, ptr->arg() is much easier to read than (*ptr).arg().

link|flag
vote up 26 vote down

The -> operator is just syntactic sugar because (*ptr).hello() is a PITA to type. In terms of the instructions generated at the ASM level, there's no difference. In fact, in some languages (D comes to mind), the compiler figures everything out based on type. If you do ptr.hello(), it just works, because the compiler knows that ptr is a pointer and doesn't have a hello() property, so you must mean (*ptr).hello().

link|flag
Spot on and interesting, I didn't know that was how D worked. Why is it thought that the term syntactic sugar irritates the hell out of me? :D – xan Jan 15 at 16:54
PITA - "Pain In the Ass" ? – shoosh Jan 15 at 17:14

Your Answer

Get an OpenID
or

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