相同的数据类型在不同的系统下占用的字节数可能不一样,下面是各种数据类型在Win32和Win64系统下所占用的字节数
Win32系统(x86编译配置下)
一、整型数据
int:4字节
long:4字节
short int:2字节
long int:4字节
long long:8字节
signed(unsigned)int:4字节
signed(unsigned) short int:2字节
signed(unsigned) long int:4字节
相同的数据类型在不同的系统下占用的字节数可能不一样,下面是各种数据类型在Win32和Win64系统下所占用的字节数
Win32系统(x86编译配置下)
一、整型数据
int:4字节
long:4字节
short int:2字节
long int:4字节
long long:8字节
signed(unsigned)int:4字节
signed(unsigned) short int:2字节
signed(unsigned) long int:4字节