摘要:
/** *此方法将始终缓存-128 到 127(包括端点)范围内的值,并可以缓存此范围之外的其他值。 */ public static Integer valueOf(int i) { if (i >= IntegerCache.low && i <= IntegerCache.high) retu 阅读全文
摘要:
hashCode()与 equals() 面试官可能会问你:“你重写过 hashcode 和 equals么,为什么重写 equals 时必须重写 hashCode 方法?” 1)hashCode()介绍: hashCode() 的作用是获取哈希码,也称为散列码;它实际上是返回一个 int 整数。这 阅读全文