Java TreeMap tailMap()方法
java.util.TreeMap.tailMap(K fromKey,boolean inclusive) 从键返回大于(或等于,如果包含在内,则为真)的键/值对。
1 语法
public NavigableMap<K,V> tailMap(K fromKey,boolean inclusive)
2 参数
fromKey:这是返回映射中键的低端点。
inclusive:如果将低端点包含在返回的视图中,则为true。
3 返回值
返回此映射的一部分的视图,该视图的键大于(或等于,如果包含在内,则为true)fromKey。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.TreeMap.tailMap(K fromKey,boolean inclusive)方法的例子
*/
import java.util.*;
public class Demo {
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}
热门文章
优秀文章