TE
科技回声
首页
24小时热榜
最新
最佳
问答
展示
工作
中文
GitHub
Twitter
首页
Ask HN: Do you use pointers? Why?
2 点
作者
i_see_things
超过 2 年前
4 条评论
ogarten
超过 2 年前
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
超过 2 年前
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
超过 2 年前
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
超过 2 年前
Yes all the time. Because I'm interested in the pointers targets.