标签:byte border unsigned 结构 位计算 div bit 标准 参数
short,long 用于限定整数类型,如:short int n;long int m;在此类变量声明中,int可以省略:short n ;long m;引入这两个限定符的目的是为了提供不同长度的整数。在不同的软硬件环境下,int,short,long的长度可能不一样,但可以确定的是16(位)<=short<=int<=long, long>=32(位)
变量的长度(VC6环境下)
变量的范围(VC6环境下)
****
结构体默认对其参数为默认为8,不到8或者不是4的整数倍时,补空字节。8的整数倍性能会高很多
======================================================================
======================================================================
JAVA语言
基本型别 | 大小 | 最小值 | 最大值 |
boolean | ----- | ----- | ------ |
char | 16-bit | Unicode 0 | Unicode 2^16-1 |
byte | 8-bit | -128 | +127 |
short | 16-bit | -2^15 | +2^15-1 |
int | 32-bit | -2^31 | +2^31-1 |
long | 64-bit | -2^63 | +2^63-1 |
float | 32-bit | IEEE754 | IEEE754 |
double | 64-bit | IEEE754 | IEEE754 |
标签:byte border unsigned 结构 位计算 div bit 标准 参数
原文地址:http://www.cnblogs.com/liwendeboke/p/5999858.html