行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);
将实例方法compareTo
的调用替换为静态compare
方法的调用,如下所示:
return Double.compare(array[index1], array[index2]);
这使您可以将double
保持在基元数组中,并避免在调用实例方法之前进行自动装箱。
在java中,基元类型没有任何方法。相反,使用基元数据类型使用Wrapper类。
更改
return array[index1].compareTo(array[index2]);
至
return new Double(array[index1]).compareTo(array[index2]);
或
尝试使用Double[] array;
而不是double[] array;
对于基元类型,不使用compareTo
,而是使用==
但如果你想使用compareTo
,只需创建一个双阵列
Double[] dist = new Double[centroids.size()];
基元类型不能直接由比较器进行比较,因为该接口仅由collator和RuleBasedCollator实现。没有包装类实现比较器。由于哪个编译器将无法自动装箱。
只要在Double类中查找,就会发现一个提供compare方法的内置方法。
public static int compare(double d1, double d2)
返回:如果d1在数值上等于d2,则值为0;如果d1在数值上小于d2,则为小于0的值;如果d1在数值上大于d2,则为大于0的值。
反转:将整个表达式乘以-1;