JavaTM 2 Platform
Standard Ed. 5.0

接口 java.util.SortedSet
的使用

使用 SortedSet 的软件包
java.util 包含集合框架、遗留的 collection 类、事件模型、日期和时间设施、国际化和各种实用工具类(字符串标记生成器、随机数生成器和位数组)。 
 

java.utilSortedSet 的使用
 

实现 SortedSetjava.util 中的类
 class TreeSet<E>
          此类实现 Set 接口,该接口由 TreeMap 实例支持。
 

返回 SortedSetjava.util 中的方法
static
<E> SortedSet<E>
Collections.checkedSortedSet(SortedSet<E> s, Class<E> type)
          返回指定有序 set 的一个动态类型安全视图。
 SortedSet<E> SortedSet.headSet(E toElement)
          返回此有序集合的部分视图,其元素严格小于 toElement
 SortedSet<E> TreeSet.headSet(E toElement)
          返回此 set 的部分视图,要求其元素严格小于 toElement
 SortedSet<E> SortedSet.subSet(E fromElement, E toElement)
          返回此有序集合的部分视图,元素范围从 fromElement(包括)到 toElement(不包括)。
 SortedSet<E> TreeSet.subSet(E fromElement, E toElement)
          返回此 set 的部分视图,其元素从 fromElement(包括)到 toElement(不包括)。
static
<T> SortedSet<T>
Collections.synchronizedSortedSet(SortedSet<T> s)
          返回由指定有序 set 支持的同步(线程安全的)有序 set。
 SortedSet<E> SortedSet.tailSet(E fromElement)
          返回此有序集合的部分视图,其元素大于或等于 fromElement
 SortedSet<E> TreeSet.tailSet(E fromElement)
          返回 set 的部分视图,其元素大于或等于 fromElement
static
<T> SortedSet<T>
Collections.unmodifiableSortedSet(SortedSet<T> s)
          返回指定有序 set 的不可修改视图。
 

参数类型为 SortedSetjava.util 中的方法
static
<E> SortedSet<E>
Collections.checkedSortedSet(SortedSet<E> s, Class<E> type)
          返回指定有序 set 的一个动态类型安全视图。
static
<T> SortedSet<T>
Collections.synchronizedSortedSet(SortedSet<T> s)
          返回由指定有序 set 支持的同步(线程安全的)有序 set。
static
<T> SortedSet<T>
Collections.unmodifiableSortedSet(SortedSet<T> s)
          返回指定有序 set 的不可修改视图。
 

参数类型为 SortedSetjava.util 中的构造方法
PriorityQueue(SortedSet<? extends E> c)
          创建包含指定集合中元素的 PriorityQueue
TreeSet(SortedSet<E> s)
          构造一个新 set,该 set 所包含的元素与指定的已排序 set 包含的元素相同,并按照相同的顺序对元素进行排序。
 


JavaTM 2 Platform
Standard Ed. 5.0

提交错误或意见
有关更多的 API 参考资料和开发人员文档,请参阅 Java 2 SDK SE 开发人员文档。该文档包含更详细的、面向开发人员的描述,以及总体概述、术语定义、使用技巧和工作代码示例。

版权所有 2004 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策