Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HashTable 存储在桶散列中,
当存储两个以上相同的哈希值时,如果取出,将取出哪个?
这取决于哈希表的实现。在 java 的 HashTable / HashMap 实现中,两者都被存储,如果object.equals()表示对象不相等。如果object.equals()返回 true(对象被认为相等),则添加的最后一个是存储的。
object.equals()