NSInteger 与 int
在 iPhone 编程中使用 NSInteger 与 int 的原因是什么?谢谢。
What would be the reason to use an NSInteger vs an int in iPhone programming? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NSInteger
只是一个具有以下定义的 typedef:由于 typedef 的定义因平台而异,因此您可以独立于平台继续使用
NSInteger
。An
NSInteger
is just a typedef with the following definition:As the typedef is defined differently basing on the platform, you can keep using
NSInteger
independently from the platform.