Java Map.remove() 移除集合
Map移除指定的元素使用remove方法.
定义
remove(Object key) 如果存在一个键的映射关系,则将其从此映射中移除
例子
/** * * Map移除集合 * */ 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.remove("wangwu")); System.out.println(m); } }
版权声明:本文为JAVASCHOOL原创文章,未经本站允许不得转载。