vote up 3 vote down star

what is the difference between (.) dot operator and (->) arrow in c++. Please help me

flag

12 Answers

vote up 0 vote down

For a pointer, we could just use

*pointervariable.foo

But the . operator has greater precedence than the * operator, so . is evaluated first. So we need to force this with parenthesis:

(*pointervariable).foo

But typing the ()'s all the time is hard, so they developed -> as a shortcut to say the same thing. If you are accessing a property of an object or object reference, use . If you are accessing a property of an object through a pointer, use -> ;D

link|flag
vote up 0 vote down

The -> is simply syntactic sugar for a pointer dereference,

As others have said:

pointer->method();

is a simple method of saying:

(*pointer).method();

For more pointer fun, check out Binky, and his magic wand of dereferencing:

http://www.youtube.com/watch?v=UvoHwFvAvQE

link|flag
vote up 0 vote down

Note that the -> operator cannot be used for certain things, for instance, accessing operator[].

#include <vector>

int main()
{
   std::vector<int> iVec;
   iVec.push_back(42);
   std::vector<int>* iVecPtr = &iVec;

   //int i = iVecPtr->[0]; // Does not compile
   int i = (*iVecPtr)[0]; // Compiles.
}
link|flag
1  
Clearly not. Because "foo->" does not mean "(*foo)". It means "(*foo).". It also can't be used for addition, subtraction... ;) – jmtd Aug 6 at 13:21
I don't see how that's relevant. member[0] also doesn't mean anything, however syntactic sugar transforms it into member.operator[](0) if applicable. It's noteworthy that -> will not allow you to do what most people generally expect to be able to. – gparent Aug 6 at 13:56
in regards to that operator, I mean. – gparent Aug 6 at 13:57
I would imagine iVecPtr->operator[](0) would work, though. The point being that the syntactic sugar that you site turns [0] into .operator[](0); it does not turn .[0] into .operator[](0). – Domenic Aug 7 at 1:18
vote up 0 vote down

The . (dot) operator is usually used to get a field / call a method from an instance of class (or a static field / method of a class).

p.myField, p.myMethod() - p instance of a class

The -> (arrow) operator is used to get a field / call a method from the content pointed by the class.

p->myField, p->myMethod() - p points to a class

link|flag
vote up 0 vote down

It's simple, whenever you see

 x->y

know it is the same as

 (*x).y
link|flag
Except when it isn't, such as when -> is overloaded. – jmtd Aug 6 at 13:20
When you overload -> you should also overload * such that this relationship holds. To do otherwise will introduce all sorts of confusion anyway. – Logan Capaldo Aug 6 at 13:39
vote up 2 vote down
pSomething->someMember

is equavivalent to

(*pSomething).someMember
link|flag
vote up 20 vote down

foo->bar() is the same as (*foo).bar()
http://stackoverflow.com/questions/221346/what-is-the-arrow-operator-synonym-for-in-c

link|flag
vote up 15 vote down

Dot operator can't be overloaded, arrow operator can be overloaded. Arrow operator is generally meant to be applied to pointers (or objects that behave like pointers, like smart pointers). Dot operator can't be applied to pointers.

EDIT When applied to pointer arrow operator is equivalent to applying dot operator to pointee (ptr->field is equivalent to (*ptr).field)

link|flag
1  
+1 for bringing up a point that others have missed. – Brian Aug 6 at 13:18
+1 ^ what he said – Ali Parr Aug 6 at 13:25
+1 ^ what he said ;) – Stefano Borini Aug 7 at 1:07
+1 ^ what he said – Mk12 Oct 1 at 0:50
vote up 2 vote down

The target. dot works on objects; arrow works on pointers to objects.

std::string str("foo");
std::string * pstr = new std::string("foo");

str.size ();
pstr->size ();
link|flag
vote up 0 vote down

-> use when you have pointer . use when you have structure (class) when you want point attribute that belong to structure use . structure.attribute when want point to attribute that have refference to memory by pointer use -> :

pointer->method;
or same as:
(*pointer).method
link|flag
vote up 5 vote down

The arrow operator is like dot, except it dereferences a pointer first. foo.bar() calls method bar() on object foo, foo->bar calls method bar on the object pointed to by pointer foo.

link|flag
vote up 1 vote down

The . operator is for direct member access.

object.Field

The arrow dereferences a pointer so you can access the object/memory it is pointing to

pClass->Field
link|flag
You mean Object.Field or pObject->Field I supose – Arkaitz Jimenez Aug 6 at 12:47

Your Answer

Get an OpenID
or

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