java 对数组列表进行排序。使用比较器。链接:https://stackoverflow.com/questions/2784514/sort-arraylist-of-custom-objects

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 对数组列表进行排序。使用比较器。链接:https://stackoverflow.com/questions/2784514/sort-arraylist-of-custom-objects相关的知识,希望对你有一定的参考价值。

/**
 * Service Answer Option Comparator
 */
private class ServiceAnswerOptionComparator implements Comparator<ServiceAnswerOption> {
    @Override
    public int compare(ServiceAnswerOption sao1, ServiceAnswerOption sao2) {
        return sao1.serviceQuestionOption.orderIndex - sao2.serviceQuestionOption.orderIndex;
    }
}

以上是关于java 对数组列表进行排序。使用比较器。链接:https://stackoverflow.com/questions/2784514/sort-arraylist-of-custom-objects的主要内容,如果未能解决你的问题,请参考以下文章

Android-java-如何按对象内的某个值对对象列表进行排序

使用java比较器对字符数组进行排序

如何使用以下代码根据实例变量对对象数组进行升序排序

Java 8 进阶手册(XX):使用 Comparator 对列表进行排序

Java 8 进阶手册(XX):使用 Comparator 对列表进行排序

如何通过比较字符串出现的位置来对字符串列表进行排序?