在循环中使用 NSInteger

发布于 2024-10-18 14:22:06 字数 41 浏览 2 评论 0原文

NSInteger 占用内存吗?我们应该在 FOR 循环中使用它吗?

Do a NSInteger occupies memory? Should we use it in a FOR loop?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

执笔绘流年 2024-10-25 14:22:06

看一下Apple文档,一个NSInteger是这样的:

#if __LP64__ || TARGET_OS_EMBEDDED || TARGET_OS_IPHONE || TARGET_OS_WIN32 || NS_BUILD_32_LIKE_64
typedef long NSInteger;
#else
typedef int NSInteger;
#endif

在iPhone上它只是4个字节,就像一个int一样,你不必担心内存。

Look at the Apple documentation, a NSInteger is this :

#if __LP64__ || TARGET_OS_EMBEDDED || TARGET_OS_IPHONE || TARGET_OS_WIN32 || NS_BUILD_32_LIKE_64
typedef long NSInteger;
#else
typedef int NSInteger;
#endif

It's just 4 bytes on an iPhone, just like an int, you don't have to worry about memory.

月竹挽风 2024-10-25 14:22:06

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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文