+ 1
Is it better to use pointers or dots when associating functions?
3 Respuestas
0
Do you mean obj->function() vs (*obj).function ?
0
yes
0
There is no difference after it gets compiled, the only real difference is one is easier to read than the other.