The reason for asking this rather "foolish" question is that I don't really know how to google it or how to search for it here on SO. The question is regarding the '->' operator, which can be used to access methods and variables from references to an object. Ex:
exClass* exObjPtr = new exClass;
exObjPtr -> exMethod();
I don't know what this (->) operator is called, and I can't google it or find it whiles searching on SO, because nether will alow searing for the special carachter '>'.
QUESTIONS:
- Where can I find more information about this topic?
- What is the operation called.
- From what I understand so far, the (->) operation is some sort of "syntactic sugar" for dereferncing an object and accessing it's members. What is the "non suger syntax" for this operation.
Apologize in advance for my rookie english! That you for your time!