JavaTM 2 Platform
Standard Ed. 6

介面 java.util.NavigableSet
的使用

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

java.utilNavigableSet 的使用
 

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

返回 NavigableSetjava.util 中的方法
 NavigableSet<K> TreeMap.descendingKeySet()
           
 NavigableSet<K> NavigableMap.descendingKeySet()
          返回此映射中所包含鍵的逆序 NavigableSet 視圖。
 NavigableSet<E> TreeSet.descendingSet()
           
 NavigableSet<E> NavigableSet.descendingSet()
          返回此 set 中所包含元素的逆序視圖。
 NavigableSet<E> TreeSet.headSet(E toElement, boolean inclusive)
           
 NavigableSet<E> NavigableSet.headSet(E toElement, boolean inclusive)
          返回此 set 的部分視圖,其元素小於(或等於,如果 inclusive 為 true)toElement
 NavigableSet<K> TreeMap.navigableKeySet()
           
 NavigableSet<K> NavigableMap.navigableKeySet()
          返回此映射中所包含鍵的 NavigableSet 視圖。
 NavigableSet<E> TreeSet.subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
           
 NavigableSet<E> NavigableSet.subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
          返回此 set 的部分視圖,其元素範圍從 fromElementtoElement
 NavigableSet<E> TreeSet.tailSet(E fromElement, boolean inclusive)
           
 NavigableSet<E> NavigableSet.tailSet(E fromElement, boolean inclusive)
          返回此 set 的部分視圖,其元素大於(或等於,如果 inclusive 為 true)fromElement
 

java.util.concurrentNavigableSet 的使用
 

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

返回 NavigableSetjava.util.concurrent 中的方法
 NavigableSet<K> ConcurrentNavigableMap.descendingKeySet()
          返回此映射中所包含鍵的逆序 NavigableSet 視圖。
 NavigableSet<K> ConcurrentSkipListMap.descendingKeySet()
           
 NavigableSet<E> ConcurrentSkipListSet.descendingSet()
          返回此 set 中所包含元素的逆序視圖。
 NavigableSet<E> ConcurrentSkipListSet.headSet(E toElement)
           
 NavigableSet<E> ConcurrentSkipListSet.headSet(E toElement, boolean inclusive)
           
 NavigableSet<K> ConcurrentNavigableMap.keySet()
          返回此映射中所包含鍵的 NavigableSet 視圖。
 NavigableSet<K> ConcurrentSkipListMap.keySet()
          返回此映射中所包含鍵的 NavigableSet 視圖。
 NavigableSet<K> ConcurrentNavigableMap.navigableKeySet()
          返回此映射中所包含鍵的 NavigableSet 視圖。
 NavigableSet<K> ConcurrentSkipListMap.navigableKeySet()
           
 NavigableSet<E> ConcurrentSkipListSet.subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
           
 NavigableSet<E> ConcurrentSkipListSet.subSet(E fromElement, E toElement)
           
 NavigableSet<E> ConcurrentSkipListSet.tailSet(E fromElement)
           
 NavigableSet<E> ConcurrentSkipListSet.tailSet(E fromElement, boolean inclusive)
           
 


JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

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