位置:首頁 > Java技術 > Java教學 > Java SortedMap接口

Java SortedMap接口

SortedMap接口擴展Map。它確保項目保持在升序鍵順序

有幾種方法冇有項目在調用映射時拋出一個NoSuchElementException異常。當一個對象在Map上的元素不兼容拋出一個ClassCastException異常。如果試圖使用一個空對象時或在map上不允許空值時一個NullPointerException異常被拋出。

通過SortedMap的聲明的方法總結如下表:

SN 方法及描述
1 Comparator comparator( )
返回調用的有序映射的比較器。如果自然順序用於調用映射,則返回null。
2 Object firstKey( )
返回調用映射的第一個鍵。
3 SortedMap headMap(Object end)
返回的有序映射為那些映射條目與小於結束鍵。
4 Object lastKey( )
Returns the last key in the invoking map.
5 SortedMap subMap(Object start, Object end)
返回包含與是大於或等於開始和小於結束鍵的那些條目映射
6 SortedMap tailMap(Object start)
返回包含與是大於或等於開始鍵的那些條目的映射。

例子:

SortedMap有其不同的類實現,如TreeMap,以下是例子來解釋的SortedMap functionlaity:

import java.util.*;

public class TreeMapDemo {

   public static void main(String args[]) {
      // Create a hash map
      TreeMap tm = new TreeMap();
      // Put elements to the map
      tm.put("Zara", new Double(3434.34));
      tm.put("Mahnaz", new Double(123.22));
      tm.put("Ayan", new Double(1378.00));
      tm.put("Daisy", new Double(99.22));
      tm.put("Qadir", new Double(-19.08));
      
	  // Get a set of the entries
      Set set = tm.entrySet();
      // Get an iterator
      Iterator i = set.iterator();
      // Display elements
      while(i.hasNext()) {
         Map.Entry me = (Map.Entry)i.next();
         System.out.print(me.getKey() + ": ");
         System.out.println(me.getValue());
      }
      System.out.println();
      // Deposit 1000 into Zara's account
      double balance = ((Double)tm.get("Zara")).doubleValue();
      tm.put("Zara", new Double(balance + 1000));
      System.out.println("Zara's new balance: " +
      tm.get("Zara"));
   }
}

這將產生以下結果:

Ayan: 1378.0
Daisy 99.22
Mahnaz: 123.22
Qadir: -19.08
Zara: 3434.34
Zara.s current balance: 4434.34