java.util.TreeMap.tailMap()


描述

所述tailMap(K fromKey) 方法用来返回此映射,其键是大于或等于fromKey的所述部分的视图。返回的地图由此地图支持,因此返回的地图中的更改将反映在此地图中,反之亦然。

声明

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

public SortedMap<K,V> tailMap(K fromKey)

参数

fromKey - 这是返回映射中键的低端点(inclusive)。

返回值

方法调用返回此映射的部分视图,其键大于或等于fromKey。

异常

ClassCastException - 如果fromKey与此映射的比较器不兼容,则抛出此异常。

NullPointerException - 如果fromKey为null并且此映射使用自然排序,或者其比较器不允许空键,则抛出此异常。

IllegalArgumentException - 如果此映射本身具有受限范围,并且fromKey位于范围的边界之外,则抛出此异常。

实例

以下示例显示了java.util.TreeMap.tailMap()的用法

package com.tutorialspoint;

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(3);
      System.out.println("Tail map values: "+treemapincl);      
   }    
}

让我们编译并运行上面的程序,这将产生以下结果。

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