数据类型、其取值范围和占用空间

给大家介绍一些常见的数据类型和对应的取值范围

类型 占用空间
bool ture/false 1字节
char 256个字符值 1字节
unsigned short int 0~65535 2字节
short int -32768~32767 2字节
unsigned long int 0~4294967295 4字节
long int -2147483648~2147483647 4字节
int(16位) -32768~32767 2字节
int(32位) -2147483648~2147483647 4字节
unsigned int(16位) 0~65535 2字节
unsigned int(32位) 0~4294967295 4字节
float 1.2e-38~3.4e38 4字节
double 2.2e-308~1.8e308 8字节

  1. 若有错误,会立刻改正1 ↩︎

你可能感兴趣的:(数据类型、其取值范围和占用空间)