Java HashMap clear()方法
java.util.HashMap.clear() 方法用于删除Map中的所有数据。
1 语法
public void clear()
2 参数
无
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.HashMap.clear()方法的例子
*/
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("Initial map elements: " + newmap);
// clear hash map
newmap.clear();
System.out.println("Map elements after clear: " + newmap);
}
}
输出结果为:
Initial map elements: {1=tutorials, 2=point, 3=is best}
Map elements after clear: {}
热门文章
优秀文章