使用自定义比较器在 Java 中创建 SortedMap
我想用 Java 创建一个具有自定义排序顺序的 TreeMap。排序后的键是字符串,需要根据第二个字符进行排序。这些值也是字符串。
示例地图:
Za,FOO
Ab,Bar
I want to create a TreeMap
in Java with a custom sort order. The sorted keys which are string need to be sorted according to the second character. The values are also string.
Sample map:
Za,FOO
Ab,Bar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用如下所示的自定义比较器:
示例:
请注意,这只是假设
String
在索引 1 处有一个字符。如果没有,则会抛出StringIndexOutOfBoundsException
。或者,您也可以使用以下比较:
这个减法“技巧”通常被破坏,但在这里它工作正常,因为两个
char
的减法不会溢出int
。不过,上面的
substring
和compareTo
解决方案更具可读性。另请参阅:
You can use a custom comparator like this:
Sample:
Note that this simply assumes that the
String
has a character at index 1. It throwsStringIndexOutOfBoundsException
if it doesn't.Alternatively, you can also use this comparison:
This subtraction "trick" is broken in general, but it works fine here because the subtraction of two
char
will not overflow anint
.The
substring
andcompareTo
solution above is more readable, though.See also:
假设您不是指散列函数或排序中的散列...
您可以通过为 String 创建一个“包装器”类并覆盖 CompareTo 方法来轻松完成此操作
Assuming you don't mean Hash as in hash function or the sort...
You could easily accomplish this by creating a "wrapper" class for String and overriding the compareTo method