Java Map.keySet() 集合映射成key视图
Map集合映射成key视图使用keySet方法.
定义
keySet() 返回此映射中包含的映射关系的 key 视图。
例子
/** * * Map集合映射成key视图 * */ public class MapDemo { public static void main(String[] args) { Map<String,Integer> m = new HashMap<String,Integer>(); m.put("zhangsan", 19); m.put("lisi", 49); m.put("wangwu", 19); m.put("lisi",20); m.put("hanmeimei", null); System.out.println(m); System.out.println(m.keySet()); } }
版权声明:本文为JAVASCHOOL原创文章,未经本站允许不得转载。