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.
我有一个树状图。它的 key 和 value 是一个 student bean,它有两个字段:regno, name.
regno
name
如果我只有 reg no 任何学生,那么如何覆盖树形图的 get 方法以获取该学生的 bean 值?
您不需要覆盖TreeMap; 你只需要改变你使用它的方式。以 regno 为键,以 student 为值,即TreeMap<Integer, Student>,假设regno为整数。然后您可以get只使用 regno 调用并检索学生。
TreeMap
TreeMap<Integer, Student>
get