short 【int】有符号短整型,数值范围为:-32768~32767; unsigned short【int】无符号短整型,数值范围为:0~65535; 其余的一些常用的数据类型的数据范围 int 有符号基本类型,数值范围为::-32768~32767。 [signed] long [int]有符号长整型,数值范围为:-2147483648~2147483647。 unsigned int 无符号基本整型,数值范围为:0~65535。 unsigned long【int】无符号长整型,数值范围为: 0~4294967295。 摘自度娘~