int(4字节)
long(32位机器上4字节, 64位机器上8字节)
short(2字节)
float(4字节或8字节)
double(8字节)
摘自 http://www.cnblogs.com/onedime/archive/2012/11/21/2780149.html
为什么long和int都是4字节
这是和你的 *** 作系统(Linux系统)的位数有关的。
32位系统:
int 32Bit 4字节
long 32bit 4字节
64位系统:
int 32Bit 4字节
long 64bit 8字节
占内存长度不同和取值范围不同int 32位 -2^32---2^32-1
short 16位 -32768~32767
32位系统:long是4字节32位,int是4字节32位
64位系统:long是8字节64位,int是4字节32位
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)