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.
我需要一个类似于 HashMap 的 Java 容器,它只存储由哈希码索引的对象(而不是键值对)。这样的容器叫什么?有它的java实现吗?
然后你正在寻找一个HashSet
此类实现了由哈希表支持的 Set 接口
请注意,HashSet 不允许重复。