-> is the thing a pointer is pointing as a member of a structure or class.
(*p).member is the same as p->member.
Simple use of Google '-> c++ operator' would have given you the answer...
-> is the thing a pointer is pointing as a member of a structure or class.
(*p).member is the same as p->member.
Simple use of Google '-> c++ operator' would have given you the answer...