1.hashcode和hequal重写什么时候会用到? 2.基本数据类型和字节数: 数值型:byteI(1个字节) int(4个字节) short(2) long(8) float(4) double(8) boolean(1个bit ) char(2) 对应的包装类: Byte,Integer,Short,Long,Character,Boolean. Float,Double Byte,Integer,Short,Long,默认创建了【-128,127】的 相应类型的缓存数据,Character【0,127】,Boolea...