排序

来源:互联网 发布:电脑钢琴是什么软件 编辑:程序博客网 时间:2024/06/08 03:31
public class IntKeyAscComparator extends WritableComparator {protected IntKeyAscComparator() {super(IntWritable.class, true);}@Overridepublic int compare(WritableComparable a, WritableComparable b) {return -super.compare(a, b);}}// key按照降序排列job.setSortComparatorClass(IntKeyAscComparator.class);


原创粉丝点击