up vote 20 down vote favorite
11
share [g+] share [fb]

What is the arrow operator (->) a synonym for?

link|improve this question
feedback

6 Answers

up vote 40 down vote accepted

The following two expressions are equivalent:

a->b

(*a).b

(subject to operator overloading, as Konrad mentions, but that's unusual).

link|improve this answer
4  
Overloading issues are a lot less unusual than you think. Not long ago, STL implementors had no overloaded -> operator for some iterator types so you had to use *.. Many libraries define them inconsistently. Becomes really annoying when you work with templates and don't know the precise type. – Konrad Rudolph Oct 21 '08 at 10:15
After your edit I think your post summons it in a good way. – P-A Oct 21 '08 at 10:16
feedback

a->b is generally a synonym for (*a).b. The parenthesises here are necessary because of the binding strength of the operators * and .: *a.b wouldn't work because . binds stronger and is executed first. This is thus equivalent to *(a.b).

Beware of overloading, though: Since both -> and * can be overloaded, their meaning can differ drastically.

link|improve this answer
feedback

The C++-language defines the arrow operator (->) as a synonym for dereferencing a pointer and then use the .-operator on that address.

For example:

If you have a an object,'anObject', and a pointer, 'aPointer':

SomeClass anObject = new SomeClass();
SomeClass *aPointer = &anObject;

To be able to use one of the objects methods you dereference the pointer and do a method call on that address:

(*p).method();

Which could be written with the arrow operator:

p->method();

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:

*(p.method()); // Not our intention!

Some of the other answer have also mention both that C++ operators can be overload and that it is not that common.

link|improve this answer
feedback

In C++0x, the operator gets a second meaning, indicating the return type of a function or lambda expression

auto f() -> int; // "->" means "returns ..."
link|improve this answer
Technically specking it is no longer an "operator" there, or is it? – Martin Nov 6 '10 at 15:09
1  
@Martin most people use the word "operator" for many things that aren't directly used for computing values. Like for "::" ("scope operator"). I don't know what the point of view of the standard is on this, exactly. In an abstract sense, one could view "->" as a functional operator mapping a sequence of types (parameters) to a return type, like the haskell operator, which is written "->" too. – Johannes Schaub - litb Nov 6 '10 at 15:15
I surrender! :-P – Martin Nov 6 '10 at 17:58
thank you for making this answer more complete. – P-A Nov 10 '10 at 15:42
feedback

I mostly read it right-to-left and call "in"

foo->bar->baz = qux->croak

becomes:

"baz in bar in foo becomes croak in qux."

link|improve this answer
feedback

this->foo;

Read as: foo in this.

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.