位置:首頁 > Java技術 > Java.util包 > tailMap(K fromKey,boolean inclusive)方法實例

tailMap(K fromKey,boolean inclusive)方法實例

tailMap(K fromKey,boolean inclusive) 方法用於返回此映射,其鍵大於fromKey的部分視圖(或等於,如果inclusive為true)。返回的映射受此映射支持,因此改變返回映射反映在此映射中,反之亦然。

聲明

以下是java.util.TreeMap.tailMap()方法的聲明。

public NavigableMap<K,V> tailMap(K fromKey,boolean inclusive)

參數

  • fromKey-- 返回映射中鍵的低端點。

  • inclusive-- true如果低端點要包含在返回的視圖。

返回值

該方法調用返回此映射,其鍵大於fromKey的部分視圖(或等於,如果inclusive為true)。

異常

  • ClassCastException--拋出此異常如果fromKey與此映射的比較器不兼容。

  • NullPointerException--該異常被拋出,如果fromKey為null,並且此映射使用自然順序,或者其比較器不允許使用null鍵。

  • IllegalArgumentException--該異常被拋出,如果此映射本身有範圍限製,並且fromKey位於範圍的邊界之外。

例子

下麵的示例演示java.util.TreeMap.tailMap()方法的使用

package com.yiibai;

import java.util.*;

public class TreeMapDemo {
   public static void main(String[] args) {
      // creating maps 
      TreeMap<Integer, String> treemap = new TreeMap<Integer, String>();
      SortedMap<Integer, String> treemapincl = new TreeMap<Integer, String>();
            
      // populating tree map
      treemap.put(2, "two");
      treemap.put(1, "one");
      treemap.put(3, "three");
      treemap.put(6, "six");
      treemap.put(5, "five");      
      
      System.out.println("Getting tail map");
      treemapincl=treemap.tailMap(2,true);
      System.out.println("Tail map values: "+treemapincl);      
   }    
}

現在編譯和運行上麵的代碼示例,將產生以下結果。

Getting tail map
Tail map values: {2=two, 3=three, 5=five, 6=six}