对具有 2 个字段的 HashMap 进行排序
我有一个包含 8 个字段的哈希图。其中 2 个是 id 和 idseq。两者都是整数。相似的idseq可以有多个,但不能有一个id。这个搭扣图可以根据这两个来排序吗?
I have a hashmap with 8 fields. Among those 2 are id and idseq. Both are integer. There can be more than one similar idseq, but not for one id. Can this hasp map be sorted on the basis of these 2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
创建一个包含这两个整数值的键,并将其用作地图的键。使此键可比较并实现排序逻辑那里。
像这样的东西:
然后您可以使用它作为地图的密钥,最好是 TreeMap 如果应该排序。
Create a key containing these two integer values and use that as a key for your map. Make this key Comparable and implement your sorting logic there.
Something like this:
You can then use this as the key for your map, preferably a TreeMap if it should be sorted.
使用 TreeMap 代替自定义比较器,您应该将其传递给其构造函数。
Use a TreeMap instead with custom Comparator which you should pass to its constructor.
我们可以使用这样的树形图:
树形图将处理其余的事情。可以使用树形图恢复数据库中表示的值的顺序。
We can use a Tree map like this:
Treemap will take care of the rest. The order of values as represented in the database can be restored by using a Tree map.