Java HashMap remove()方法
java.util.HashMap.remove() 方法用于删除指定key的条目。
1 语法
public V remove(Object key)
2 参数
key:这是要从映射中删除其映射的key。
3 返回值
返回与key关联的先前值;如果没有key映射,则返回null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.HashMap.remove()方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String args[]) {
// create hash map
HashMap newmap = new HashMap();
// populate hash map
newmap.put(1, "tutorials");
newmap.put(2, "point");
newmap.put(3, "is best");
System.out.println("Values before remove: "+ newmap);
// remove value for key 2
newmap.remove(2);
System.out.println("Values after remove: "+ newmap);
}
}
输出结果为:
Values before remove: {1=tutorials, 2=point, 3=is best}
Values after remove: {1=tutorials, 3=is best}
热门文章
优秀文章