zoukankan      html  css  js  c++  java
  • 标准数据类型宏定义

    https://blog.csdn.net/qq_33195791/article/details/82431811

    保证最终在程序中使用的类型的位数是一定;例如64位系统的long int是 8个字节(64位),那么在32位系统中,为了保持64位,需要一个long long int的类型;

    即 

    # if __WORDSIZE == 64  
    typedef long int        int64_t;  
    # else  
    __extension__  
    typedef long long int   int64_t;  
    # endif
    

      

  • 相关阅读:
    CentOS 6.x 系统安装选项说明
    MySQL表的操作
    6月13号
    6月11号
    6月10号
    6月9号
    6月6
    day27
    day 28
    day 29
  • 原文地址:https://www.cnblogs.com/wllwqdeai/p/10699288.html
Copyright © 2011-2022 走看看