zoukankan      html  css  js  c++  java
  • 整理出的各种类型的字节数

    // LINUX中 GCC类型长度(字节)
    // type         x86_sizeof(type)    x64_sizeof(type)
    // char         1                   1
    // short        2                   2
    // int          4                   4
    // long         4                   8
    // void*        4                   8
    // long long    8                   8
    // float        4                   4
    // double       8                   8

    //__GNUC__
    /nux
    //__i386__  是x86
    //__x86_64__  是X64


    //windows VC编译器
    // type         x86_sizeof(type)    x64_sizeof(type)
    // char         1                   1
    // short        2                   2
    // int          4                   4
    // long         4                   4
    // void*        4                   8
    // long long    8                   8
    // float        4                   4
    // double       8                   8
  • 相关阅读:
    集训队作业2018人类的本质
    推式子小技巧
    [Codeforces671D]Roads in Yusland
    线性规划的对偶问题
    数学虐哭空巢老人记
    Voronoi图与Delaunay三角剖分
    [ZJOI2018]保镖
    [SPOJ2939]Qtree5
    数据结构虐哭空巢老人记
    [CTSC2006]歌唱王国
  • 原文地址:https://www.cnblogs.com/wangchenggen/p/3732565.html
Copyright © 2011-2022 走看看