首页上一页 1 下一页尾页 2 条记录 1/1页
JAVA从入门到精通-第3版
发表在Java图书答疑
2016-02-15
是否精华
是
否
版块置顶:
是
否
import java.util.Arrays;
public class Example {
public static void main(String[] args) {
int ia[]=new int[]{1,8,9,4,5};
Arrays.sort(ia);
int Index=Arrays.binarySearch(ia, 6);
System.out.println("6的索引位置是"+Index);// TODO Auto-generated method stub
}
}
输出结果为什么是:6的索引位置是-4;而不是-3?
public class Example {
public static void main(String[] args) {
int ia[]=new int[]{1,8,9,4,5};
Arrays.sort(ia);
int Index=Arrays.binarySearch(ia, 6);
System.out.println("6的索引位置是"+Index);// TODO Auto-generated method stub
}
}
输出结果为什么是:6的索引位置是-4;而不是-3?