What is the arrow operator (->) a synonym for?
|
|
|
The following two expressions are equivalent:
(subject to operator overloading, as Konrad mentions, but that's unusual). |
|||||||
|
|
Beware of overloading, though: Since both |
|||
|
|
|
The C++-language defines the arrow operator ( For example: If you have a an object,
To be able to use one of the objects methods you dereference the pointer and do a method call on that address:
Which could be written with the arrow operator:
The main reason of the existents of the arrow operator is that it shortens the typing of a very common task and it also kind of easy to forgot the parentheses around the dereferencing of the pointer. If you forgot the parentheses the .-operator will bind stronger then *-operator and make our example execute as:
Some of the other answer have also mention both that C++ operators can be overload and that it is not that common. |
|||||
|
|
In C++0x, the operator gets a second meaning, indicating the return type of a function or lambda expression
|
|||||||||||||||
|
|
I mostly read it right-to-left and call "in"
becomes: "baz in bar in foo becomes croak in qux." |
||||
|
|