+ 1
-> is the arrow operator. it's used it class pointers. so where we have something like:
MyClass * myObjPtr;
in order to access it's variables or methods we have to call them like:
myObjPtr->DoSomething();
instead of something like:
MyClass myObj;
myObj.DoSomething ();