位置:首页 > 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}