Java TreeMap headMap()方法
java.util.TreeMap.headMap(K toKey,boolean inclusive) 返回其键小于(或等于(如果包含)为true的话)toKey的键值对。
1 语法
public NavigableMap<K,V> headMap(K toKey,boolean inclusive)
2 参数
toKey:这是返回映射中键的高端端点。
inclusive:如果要在返回的视图中包含高端端点,则为true。
3 返回值
返回此映射的一部分的视图,该视图的键小于(或等于,如果包含在内,则为true)toKey。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.TreeMap.headMap(K toKey,boolean inclusive)方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String[] args) {
// creating maps
TreeMap<Integer, String> treemap = new TreeMap<Integer, String>();
NavigableMap<Integer, String> treemapheadincl = 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");
// getting head map inclusive 3
treemapheadincl = treemap.headMap(3,true);
System.out.println("Checking values of the map");
System.out.println("Value is: "+ treemapheadincl);
}
}
输出结果为:
Checking values of the map
Value is: {1=one, 2=two, 3=three}
热门文章
优秀文章