byte/short/long分别存储什么数据,整数还是小数?
byte 整数 内存长度1个字节 short 整数 内存长度2个字节 int 整数 内存长度4个字节(整数默认类型)long 整数 long a=18l; 结尾加l //内存长度8个字节