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.
自定义类需要实现哪些方法(如果有)才能用作 a中的键Map?
Map
这取决于您的地图类型:
HashMap
hashCode
equals
TreeMap
compareTo
Comparable<T>
Comparator
如果你想使用 TreeMap,你的类必须实现 Comparable。如果您使用的是 HashMap,您将需要一个好的散列函数。