赞
踩
byte 内存占用 1字节 ,取值范围 -128~127;
short 内存占用 2字节,取值范围 -32768~32767;
int 内存占用4字节,取值范围-2e31~2e31-1;
long 内存占用8字节,取值范围-2e63~2e63-1;
float 内存占用 4字节
double 内存占用 8字节
所以带符号转化以整数为例
Integer.valueOf("FF", 16).byteValue()
Integer.valueOf("FFFF", 16).shortValue()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。