SortedMap接口

时间:2022-12-24 00:14:23

SortedMap接口是排序接口,只要是实现了此接口的子类,都属于排序的子类,TreeMap也是此接口的一个子类。

SortedMap接口

import java.util.Map;
import java.util.SortedMap;
import java.util.TreeMap; //=================================================
// File Name : SortedMap_demo
//------------------------------------------------------------------------------
// Author : Common //主类
//Function : SortedMap_demo;
public class SortedMap_demo { public static void main(String[] args) {
// TODO 自动生成的方法存根
SortedMap<String,String> map = null; //声明Map对象
map = new TreeMap<String,String>(); //key和value是String类
map.put("zhangsan", "www.baidu.com"); //增加内容
map.put("lisi", "www.alibaba.com"); //增加内容
map.put("wangwu", "www.google.com"); //增加内容
System.out.println("第一个元素的内容的key:"+map.firstKey());
System.out.println("对应的值:"+map.get(map.firstKey()));
System.out.println("最后一个元素的内容的key:"+map.lastKey());
System.out.println("对应的值:"+map.get(map.lastKey())); System.out.println("输出小于指定范围的");
for(Map.Entry<String, String> me: map.headMap("wangwu").entrySet()){
System.out.println(me.getKey()+"-->"+me.getValue());
} System.out.println("输出大于等于指定范围的");
for(Map.Entry<String, String> me: map.tailMap("wangwu").entrySet()){
System.out.println(me.getKey()+"-->"+me.getValue());
} System.out.println("输出在指定范围的");
for(Map.Entry<String, String> me: map.subMap("lisi","zhangsan").entrySet()){
System.out.println(me.getKey()+"-->"+me.getValue());
}
} }