|
|||||||||
接口 java.util.SortedSet
的使用
使用 SortedSet 的软件包 | |
---|---|
java.util | 包含集合框架、遗留的 collection 类、事件模型、日期和时间设施、国际化和各种实用工具类(字符串标记生成器、随机数生成器和位数组)。 |
java.util 中 SortedSet 的使用 |
---|
实现 SortedSet 的 java.util 中的类 | |
---|---|
class |
TreeSet<E> 此类实现 Set 接口,该接口由 TreeMap 实例支持。 |
返回 SortedSet 的 java.util 中的方法 | ||
---|---|---|
static
|
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
|
Collections.synchronizedSortedSet(SortedSet<T> s) 返回由指定有序 set 支持的同步(线程安全的)有序 set。 |
|
SortedSet<E> |
SortedSet.tailSet(E fromElement) 返回此有序集合的部分视图,其元素大于或等于 fromElement。 |
|
SortedSet<E> |
TreeSet.tailSet(E fromElement) 返回 set 的部分视图,其元素大于或等于 fromElement。 |
|
static
|
Collections.unmodifiableSortedSet(SortedSet<T> s) 返回指定有序 set 的不可修改视图。 |
参数类型为 SortedSet 的 java.util 中的方法 | ||
---|---|---|
static
|
Collections.checkedSortedSet(SortedSet<E> s, Class<E> type) 返回指定有序 set 的一个动态类型安全视图。 |
|
static
|
Collections.synchronizedSortedSet(SortedSet<T> s) 返回由指定有序 set 支持的同步(线程安全的)有序 set。 |
|
static
|
Collections.unmodifiableSortedSet(SortedSet<T> s) 返回指定有序 set 的不可修改视图。 |
参数类型为 SortedSet 的 java.util 中的构造方法 | |
---|---|
PriorityQueue(SortedSet<? extends E> c) 创建包含指定集合中元素的 PriorityQueue。 |
|
TreeSet(SortedSet<E> s) 构造一个新 set,该 set 所包含的元素与指定的已排序 set 包含的元素相同,并按照相同的顺序对元素进行排序。 |
所有类
|
|||||||||