码迷,mamicode.com
首页 > 其他好文 > 详细

TreeMap的案例

时间:2017-05-09 19:41:59      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:print   nbsp   port   pac   stat   div   code   .so   sys   

package ditu.com;

import java.util.Map.Entry;
import java.util.Set;
import java.util.SortedMap;
import java.util.TreeMap;


public class TestTreeMap {
    public static void main(String[] args) {
    TreeMap<Integer,String> map=new TreeMap<Integer,String>();
        map.put(1, "andy");
        map.put(2, "bill");
        map.put(3, "cinaa");
        map.put(4, "davaid");
        map.put(6, "ella");
    SortedMap<Integer, String>    m=map.subMap(3, 10);
    
    //Set <Entry<Integer,String>>set=map.subMap(2, 6).entrySet();    
    Set <Entry<Integer,String>>set=m.entrySet();
        for(Entry<Integer,String> e:set){
            System.out.println(e);
        }
    
    }

}

 

TreeMap的案例

标签:print   nbsp   port   pac   stat   div   code   .so   sys   

原文地址:http://www.cnblogs.com/zyy1130/p/6832177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!