如何对集合进行排序<T>? [英] How to sort a Collection&lt;T&gt;?

查看:32
本文介绍了如何对集合进行排序<T>?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个通用的 Collection 并且正在尝试找出如何对其中包含的项目进行排序.我已经尝试了一些东西,但我无法让它们中的任何一个工作.

I have a generic Collection and am trying to work out how I can sort the items contained within it. I've tried a few things but I can't get any of them working.

推荐答案

集合本身没有预定义的顺序,因此您必须将它们转换为一个 java.util.List.然后你可以使用一种形式的 java.util.Collections.sort

Collections by themselves do not have a predefined order, therefore you must convert them to a java.util.List. Then you can use one form of java.util.Collections.sort

Collection< T > collection = ...;

List< T > list = new ArrayList< T >( collection );

Collections.sort( list );
 // or
Collections.sort( list, new Comparator< T >( ){...} );

// list now is sorted

这篇关于如何对集合进行排序<T>?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆