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?
|
|
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. |
||||
|
|
|
The main advantage in terms of readability comes when you have to chain function calls, i.e.:
I'm not even going to bother doing this with the * operator. |
||
|
|
|
|
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. |
||
|
|
|
|
The only reason to have the
Because it is so easy to forget the parenthesis. |
||
|
|
|
|
They generate the same exact machine code, but for me, ptr->arg() is much easier to read than (*ptr).arg(). |
||
|
|
|
|
The -> operator is just syntactic sugar because |
||
