TE
TechEcho
Home
24h Top
Newest
Best
Ask
Show
Jobs
English
GitHub
Twitter
Home
Ask HN: Do you use pointers? Why?
2 points
by
i_see_things
over 2 years ago
4 comments
ogarten
over 2 years ago
When I teach a class, I always use pointers to show things on my slides.<p>Jokes aside, what pointers are you talking about? Code? Presentations?
stop50
over 2 years ago
Pointer are useful, since you don't have to copy some stuff around. It reduces the memory footprint, but you hace to watch out for parallel access on the same object.
tekknik
over 2 years ago
It would be very helpful to discuss what language you’re using pointers in. Some languages use pointers under the hood, others don’t.
pestatije
over 2 years ago
Yes all the time. Because I'm interested in the pointers targets.