美文网首页
Java字典序排序

Java字典序排序

作者: 流苏丶 | 来源:发表于2019-10-08 16:22 被阅读0次
    Java中对List进行字典序排序
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.Comparator;
    import java.util.List;
    
    private List<Type> list = new ArrayList<>();
    
    Collections.sort(list, new Comparator<Type>() {
                @Override
                public int compare(Type o1, Type o2) {
                    return o1.compareTo(o2);
                }
            });
    //倒序排列
    Collections.reverse(list);
    

    相关文章

      网友评论

          本文标题:Java字典序排序

          本文链接:https://www.haomeiwen.com/subject/wenbpctx.html