我有点失落。在类中声明排序函数的语法是什么?
我在这里上课:
public class PLClass
{
double PL;
int index;
/** other functions **/
}
我想根据元素双PL对元素PLClass的集合进行排序:
public ArrayList<PLClass> Mycollec;
Collections.sort(Mycollec, Collections.reverseOrder(PL));
我收到以下错误消息: 说明:Collections 类型中的方法 reverseOrder(Comparator) 不适用于参数 (double)。
知道我缺少什么吗?谢谢 !