2018.12.26

 

有符号整数:
signed char:占1个字节,范围是-128~127
short int :占2个字节,范围是-2^15~2^15-1
int:占4个字节,范围是-2^31~2^31-1(即-2147483648~2147483647 )
long int:占4个字节,范围是-2^31~2^31-1(即-2147483648~2147483647 )
long long int:占8个字节,范围是-2^63~2^63-1(即-9223372036854775808~9223372036854775807)

 

无符号整型:

unsigned char:占1个字节,范围是0~256

unsigned short int或者是unsigned short:占2个字节,范围是0~2^16

unsigned int:占4个字节,范围是0~2^32(即0~4294967295 )

unsigned long int:占4个字节,范围是0~2^32(即0~4294967295 )

unsigned long long int:占8个字节,范围是0~2^63(即0~18446744073709551615 )

 

 

__int64的最大值:9223372036854775807
__int64的最小值:-9223372036854775808
unsigned __int64的最大值:18446744073709551615

 

 

你可能感兴趣的:(2018.12.26)