HashSet排序

Posted zhuii

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HashSet排序相关的知识,希望对你有一定的参考价值。

利用TreeSet的排序:

 HashSet hs = new HashSet();

 TreeSet ts = new TreeSet(hs);   

  ts.comparator();      

  System.out.println(ts);  

 

以上是关于HashSet排序的主要内容,如果未能解决你的问题,请参考以下文章

HashSet排序

HashSet使用自定义IComparer排序而不使用LINQ

Java HashSet中元素的排序

是啥导致 java.util.HashSet 和 HashMap.keySet() 类的 iterator() 排序稍微不可预测?

12集合--HashSet的使用

Set(一):HashSet、LinkedHasSet源码浅析