本文介绍了java Arrays.binarySearch无法找到目标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
String[] sortedArray = new String[]{"Quality", "Name", "Testing", "Package"};
// Search for the word "cat"
int index = Arrays.binarySearch(sortedArray, "Quality");
我总是得到 -3
。问题出在名称
中。为什么我的数组中不能有Name
?有什么想法?
I always get -3
. Problem is in "Name"
. Why I can not have "Name"
in my array? Any idea?
推荐答案
为了使用 binarySearch
,你需要首先对数组进行排序:
In order to use binarySearch
, you will need to sort the array yourself first:
String[] sortedArray = new String[]{"Quality", "Name", "Testing", "Package"};
java.util.Arrays.sort(sortedArray);
int index = Arrays.binarySearch(sortedArray, "Quality");
这篇关于java Arrays.binarySearch无法找到目标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!