HashSet /LinkedHashSet/TreeSet排序的不同

时间:2022-03-10 17:55:18

 

输出结果为:

[f, g, e, b, c, a]
[b, c, e, f, g, a]
[a, b, c, e, f, g]

 

 

HashSet按Hash函数排序

LinkedHashSet按插入顺序排序

TreeSet按字母顺序排序