+ 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 ();
25th Jul 2016, 4:48 PM
destro