数据类型 | 长度 | 字节数 | 数量级 |
---|---|---|---|
char | -128 ~ +127 | (1 Byte) | -2^7 ~ 2^7-1 |
short | -32767 ~ + 32768 | (2 Bytes) | -2^15 ~ 2^15-1 |
unsigned short | 0 ~ 65536 | (2 Bytes) | 0 ~ 2^16-1 |
int | -2147483648 ~ +2147483647(10次方) | (4 Bytes) | -2^31 ~ 2^31-1 |
unsigned int | 0 ~ 4294967295 | (4 Bytes) | 0 ~ 2^32-1 |
long long | -9223372036854775808 ~ +9223372036854775807(19次方) | (8 Bytes) | -2^63 ~ 2^63-1 |
unsigned long long | (8 Bytes) | 0 ~ 2^64-1 |