heyipomoea 2013-08-10 06:07
浏览 1905

Collections.sort疑问

JButton btnNewButton = new JButton("排序");
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
Collections.sort(studentList, new ChineseComparator());
}
});

想请问版上大哥,上列是我使用event的写法,我想要将studentList中的资料排序

但是却出现error,不知道为什么...error错误讯息是The method sort(List, Comparator<? super T>Wink in the type Collections is not applicable for the arguments (List, ChineseComparator)...

我看网路上都是这样写都可以阿...会是<? super T>的问题吗?

并附上ChineseComparator的写法

public class ChineseComparator implements Comparator {

@Override
public int compare(Student s1, Student s2) {
// TODO Auto-generated method stub
if (s1.getChnScore() > s2.getChnScore())
return 1;
else if (s1.getChnScore() < s2.getChnScore())
return -1;
else
return 0;
}
}

麻烦了

  • 写回答

0条回答

    报告相同问题?

    悬赏问题

    • ¥15 解决一个加好友限制问题 或者有好的方案
    • ¥15 关于#java#的问题,请各位专家解答!
    • ¥15 急matlab编程仿真二阶震荡系统
    • ¥20 TEC-9的数据通路实验
    • ¥15 ue5 .3之前好好的现在只要是激活关卡就会崩溃
    • ¥50 MATLAB实现圆柱体容器内球形颗粒堆积
    • ¥15 python如何将动态的多个子列表,拼接后进行集合的交集
    • ¥20 vitis-ai量化基于pytorch框架下的yolov5模型
    • ¥15 如何实现H5在QQ平台上的二次分享卡片效果?
    • ¥30 求解达问题(有红包)