标签:int 取值范围
16位系统下:int的取值范围时-32768--32767,也就是
-2^15—2^15-1.
32位系统下:-2147483648—2147483647,
即 -2^31—2^31-1.
默认int=signed int.
规定 short int 取值范围不能大于int。
long int 取值范围不能小于int。
short 占2个字节,16个比特位 所以取值-2^15—2^15-1
int 4个字节
long 4个字节 32个比特位 所以取值 -2^31—2^31-1.
float 4个字节
double 8个字节
char 1个字节
本文出自 “11132019” 博客,请务必保留此出处http://11142019.blog.51cto.com/11132019/1760082
标签:int 取值范围
原文地址:http://11142019.blog.51cto.com/11132019/1760082