5
votes
5answers
2k views
What is the arrow operator (->) synonym for in C++?
I know it, forgets it and relearn it again. Time to write it down.
…
0
votes
What is the arrow operator (->) synonym for in C++?
The C++-language defines the arrow operator (->) as a synonym for dereferencing a pointer and then use the .-operator on that address.
For example:
If you have a an object,'anObject …
