用于字节数组的Java比较器

用于字节数组的Java比较器

本文介绍了用于字节数组的Java比较器(词典)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个带有byte []键的hashmap。我想通过一个TreeMap对它进行排序。



为词典顺序实现比较器最有效的方法是什么?

解决方案

使用,您可以使用的:








UnsignedBytes 比较器似乎具有使用不安全它可以使用它。代码中的注释表明它可能是正常Java实现的两倍。


I have a hashmap with byte[] keys. I'd like to sort it through a TreeMap.

What is the most effective way to implement the comparator for lexicographic order?

解决方案

Using Guava, you can use either of:

The UnsignedBytes comparator appears to have an optimized form using Unsafe that it uses if it can. Comments in the code indicate that it may be at least twice as fast as a normal Java implementation.

这篇关于用于字节数组的Java比较器(词典)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 15:43