当我们有equals(), compareTo()methods 为什么hashcode()在 Java 中有一个方法?
如果我们使用  HashTable我们必须覆盖hashcode()方法,除了快速访问随机键之外还有什么特殊原因吗?如果我们重写该hashcode()方法,可能的实现是什么?
Java如何确保对象在内存中的唯一性?
Hashcodes are typically used to enhance the performance of large collections of data.
在hashing我们计算hash code. 这是一项额外的任务。当我们对添加到集合中的每个对象执行附加操作时。性能如何提高?