zoukankan      html  css  js  c++  java
  • int和NSInteger区别

    查到c语言中,int和long的字节数是和操作系统指针所占位数相等。

    但c语言中说,long的长度永远大于或等于int

    objective-c里,苹果的官方文档中总是推荐用NSInteger

    它和int有什么区别呢,stackoverflow这帮大神给了答案。

    原来在苹果的api实现中,NSInteger是一个封装,它会识别当前操作系统的位数,自动返回最大的类型。

    定义的代码类似于下:

    #if __LP64__ || TARGET_OS_EMBEDDED || TARGET_OS_IPHONE || TARGET_OS_WIN32 || NS_BUILD_32_LIKE_64

    typedef long NSInteger;

    typedef unsigned long NSUInteger;

    #else

    typedef int NSInteger;

    typedef unsigned int NSUInteger;

    #endif

     You usually want to use NSInteger when you don't know what kind of processor architecture your code might run on, so you may for some reason want the largest possible int type, which on 32 bit systems is just an int, while on a 64-bit system it's a long.

    总结:NSInteger与int的区别是NSInteger会根据系统的位数(32or64)自动选择int的最大数值(int or long)。

    转:http://blog.csdn.net/freedom2028/article/details/8035847

  • 相关阅读:
    Python3 面向对象小练习
    Python3 面向对象进阶1
    Python3 类的继承小练习
    Python3 类的继承
    Python3 数据结构之词频统计(英文)
    Python3 类与对象之王者荣耀对战小游戏
    Python3 类与对象
    SQL优化单表案例
    SQL性能分析
    索引简介
  • 原文地址:https://www.cnblogs.com/ygm900/p/3951448.html
Copyright © 2011-2022 走看看