gpt4 book ai didi

iphone - 在循环中使用 NSInteger

转载 作者:行者123 更新时间:2023-12-03 21:20:45 25 4
gpt4 key购买 nike

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

最佳答案

看看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 一样,你不必担心内存。

关于iphone - 在循环中使用 NSInteger,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5096619/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com