行return array[index1].compareTo(array[index2]);
提供错误“无法在基本类型double”上调用compareTo(double)。如何解决这个问题?
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:: This function implements a comparator of double values :*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
private class ArrayIndexComparator implements Comparator<Integer>
{
private final double[] array;
public ArrayIndexComparator(double[] array)
{
this.array = array;
}
public Integer[] createIndexArray()
{
Integer[] indexes = new Integer[array.length];
for (int i = 0; i < array.length; i++)
{
indexes[i] = i; // Autoboxing
}
return indexes;
}
@Override
public int compare(Integer index1, Integer index2)
{
// Autounbox from Integer to int to use as array indexes
return array[index1].compareTo(array[index2]);
}
}
double[] dist = new double[centroids.size()];
// fill array...
ArrayIndexComparator comparator = new ArrayIndexComparator(dist);
Integer[] indexes = comparator.createIndexArray();
Arrays.sort(indexes, comparator);
答案 0 :(得分:17)
使用static compare
method的调用替换实例方法compareTo
的调用,如下所示:
return Double.compare(array[index1], array[index2]);
这使您可以将double
保存在基元数组中,并在调用实例方法之前避免自动装箱。
答案 1 :(得分:1)
在java原始类型中没有任何方法。而是使用原始数据类型使用Wrapper类。
更改
return array[index1].compareTo(array[index2]);
到
return new Double(array[index1]).compareTo(array[index2]);
或
尝试使用Double[] array;
代替double[] array;
答案 2 :(得分:1)
不使用compareTo
,而是使用==
但如果您想使用compareTo
,只需创建一个Double数组
Double[] dist = new Double[centroids.size()];
答案 3 :(得分:0)
原始类型不能由比较器直接比较,因为接口仅由collator和RuleBasedCollator实现。没有包装类实现比较器。由于哪个编译器无法自动装箱。
只需查看Double类,您就会发现一个提供比较方法的内置方法。
public static int compare(double d1, double d2)
<强>返回:强> 如果d1在数值上等于d2,则值为0;如果d1在数值上小于d2,则小于0的值;如果d1在数值上大于d2,则值大于0.
反向:将整个表达式多个-1;