Java TreeMap subMap()方法
java.util.TreeMap.subMap(K fromKey,K toKey) 返回key-value对,其键的范围从fromKey(包括)到toKey(不包括)。
1 语法
public SortedMap<K,V> subMap(K fromKey,K toKey)
2 参数
fromKey:这是返回映射中键的低端点(包括端点)。
toKey:这是返回映射中键的高端端点(不包括)。
3 返回值
返回此映射部分的视图,其键范围从fromKey(包括)到toKey(不包括)。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.TreeMap.subMap(K fromKey,K toKey)方法的例子
*/
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 a portion of the map");
treemapincl = treemap.subMap(1,5);
System.out.println("Sub map values: "+treemapincl);
}
}
输出结果为:
Getting a portion of the map
Sub map values: {1=one, 2=two, 3=three}
热门文章
优秀文章