如何对字节数组集合进行 Collections.binarySearch ?
这不起作用:
List<byte[]> byteArrayList = .... ;
Collections.binarySearch(byteArrayList, new ByteArrayComparator());
因为 byte[] 不扩展 Comparable。为什么提供比较器还不够? 有什么技巧吗?
UPS,错误,我确定我里面有搜索词......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就目前而言,您正在字节数组列表中搜索比较器。看来您调用了错误的 binarySearch 方法,即 这个 而不是 这个。
试试这个:
As it stands, you're searching the list of byte arrays for a comparator. It looks like you're calling the wrong binarySearch method, i.e. this instead of this.
Try this: