概述
/*
Remove all values from Java HashMap example
This Java Example shows how to remove all values from HashMap object or empty
HashMap or clear HashMap using clear method.
*/
import java.util.HashMap;
public class EmptyHashMapExample {
public static void main(String[] args) {
// create HashMap object
HashMap hMap = new HashMap();
// add key value pairs to HashMap
hMap.put("1", "One");
hMap.put("2", "Two");
hMap.put("3", "Three");
/*
* To remove all values or clear HashMap use void clear method() of
* HashMap class. Clear method removes all key value pairs contained in
* HashMap.
*/
hMap.clear();
System.out.println("Total key value pairs in HashMap are : "
+ hMap.size());
}
}
/*
* Output would be Total key value pairs in HashMap are : 0
*/
原文:http://www.java-examples.com/remove-all-values-java-hashmap-example
最后
以上就是执着帅哥为你收集整理的清除哈希表中的所有元素的全部内容,希望文章能够帮你解决清除哈希表中的所有元素所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复