首页 > 代码库 > TreeMap的案例
TreeMap的案例
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的案例
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。