#SortedSet

SortedSet的实现类是TreeSet:它的作用是字为添加到TreeSet中的元素排序。

 SortedSet可自动为元素排序。SortedSet的实现类是TreeSet:它的作用是字为添加到TreeSet中的元素排序。 练习:自定义类用TreeSet排序。与HashSet不同,TreeSet并不需要实现HashCode()和equals()。只要实现compareable和compar...

吴裕雄--天生自然java开发常用类库学习笔记:SortedSet接口

importjava.util.SortedSet;importjava.util.TreeSet;publicclassTreeSetDemo05{publicstaticvoidmain(Stringargs[]){SortedSet<String>allSet=newTreeSet<String...