0
what is the name of dot which is used in c++ between object and function
2 odpowiedzi
+ 1
It's called quite simply 'member access operator'.
If you are using a pointer to an object (dynamic instaniation) it becomes an ' -> ' operator (or you can dereference the pointer and access member of that, the arrow is pretty much just a macro).
+ 1
thank you Norbivar