JavaTM 2 Platform
Standard Ed. 6

介面 java.util.SortedSet
的使用

使用 SortedSet 的軟體套件
java.util 包含 collection 框架、遺留的 collection 類別、事件模型、日期和時間設施、國際化和各種實用工具類別(字元串標記產生器、隨機數產生器和位元陣列)。 
java.util.concurrent 在共時程式中很常用的實用工具類別。 
 

java.utilSortedSet 的使用
 

java.utilSortedSet 的子介面
 interface NavigableSet<E>
          擴展的 SortedSet,具有了為給定搜尋目標報告最接近比對項的導航方法。
 

實作 SortedSetjava.util 中的類別
 class TreeSet<E>
          基於 TreeMapNavigableSet 實作。
 

返回 SortedSetjava.util 中的方法
static
<E> SortedSet<E>
Collections.checkedSortedSet(SortedSet<E> s, Class<E> type)
          返回指定有序 set 的一個動態型別安全視圖。
 SortedSet<E> TreeSet.headSet(E toElement)
           
 SortedSet<E> NavigableSet.headSet(E toElement)
          返回此 set 的部分視圖,其元素嚴格小於 toElement
 SortedSet<E> SortedSet.headSet(E toElement)
          返回此 set 的部分視圖,其元素嚴格小於 toElement
 SortedSet<E> TreeSet.subSet(E fromElement, E toElement)
           
 SortedSet<E> NavigableSet.subSet(E fromElement, E toElement)
          返回此 set 的部分視圖,其元素從 fromElement(包括)到 toElement(不包括)。
 SortedSet<E> SortedSet.subSet(E fromElement, E toElement)
          返回此 set 的部分視圖,其元素從 fromElement(包括)到 toElement(不包括)。
static
<T> SortedSet<T>
Collections.synchronizedSortedSet(SortedSet<T> s)
          返回指定有序 set 支持的同步(執行緒安全的)有序 set。
 SortedSet<E> TreeSet.tailSet(E fromElement)
           
 SortedSet<E> NavigableSet.tailSet(E fromElement)
          返回此 set 的部分視圖,其元素大於等於 fromElement
 SortedSet<E> SortedSet.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)
          創建包含指定有序 set 元素的 PriorityQueue
TreeSet(SortedSet<E> s)
          建構一個與指定有序 set 具有相同映射關係和相同排序的新 TreeSet。
 

java.util.concurrentSortedSet 的使用
 

實作 SortedSetjava.util.concurrent 中的類別
 class ConcurrentSkipListSet<E>
          一個基於 ConcurrentSkipListMap 的可縮放共時 NavigableSet 實作。
 

參數型別為 SortedSetjava.util.concurrent 中的建構子
ConcurrentSkipListSet(SortedSet<E> s)
          建構一個新 set,該 set 所包含的元素與指定的有序 set 套件含的元素相同,使用的順序也相同。
 


JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only