在循环中使用 NSInteger
NSInteger 占用内存吗?我们应该在 FOR 循环中使用它吗?
Do a NSInteger occupies memory? Should we use it in a FOR loop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
NSInteger 占用内存吗?我们应该在 FOR 循环中使用它吗?
Do a NSInteger occupies memory? Should we use it in a FOR loop?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
看一下Apple文档,一个NSInteger是这样的:
在iPhone上它只是4个字节,就像一个int一样,你不必担心内存。
Look at the Apple documentation, a NSInteger is this :
It's just 4 bytes on an iPhone, just like an int, you don't have to worry about memory.
NSInteger 只是本机整数类型的别名。 Cmd+Dbl 单击它并查看。
1)它在范围内使用堆栈内存(我假设),并在超出范围时释放它。
2)是的,在for循环中使用它。
另请参阅 在 Cocoa 中你更喜欢NSInteger 或 int,为什么?
NSInteger is just an alias for the native integer type. Cmd+Dbl Click on it and see.
1) It uses stack memory (I assume) while it is in scope and releases it when it goes out of scope.
2) Yes, use it in a for loop.
Also, see In Cocoa do you prefer NSInteger or int, and why?