Why we use pointers? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why we use pointers?

Why don't we use the simple n.attack(); formula?

10th Aug 2016, 8:17 PM
Enikő Pazonyiné Csanádi
Enikő Pazonyiné Csanádi - avatar
2 Answers
+ 1
we use pointers for a few reasons. one is to access variables not in our current scooe, another is because we might want it to live on the memory past it's function call. as far as the specific example in your question I'm not sure either should be fine. it was more or less a way to show you pointer classes
10th Aug 2016, 9:09 PM
destro
0
Pointers allow us to pass the address of an object around. Think of this from a low level point of view. A pointer is a 32 bit number on a 32 bit machine. To pass around a reference to that object means we only need to copy around that 32 bit number. The actual object that address points to could be any size. Passing around the actual object could mean copying literally millions of bytes. Using the pointer is a far more efficient way of using CPU instructions.
3rd Feb 2017, 9:24 PM
David Clark
David Clark - avatar