概述
3.8 HashMap的用法
HashMap和HashSet很像,只不过它里面存的是一个一个的键值对。
例:3.8.1
import java.util.*;
public class TestMark_to_win {
public static void main(String[] args) {
Map<String, String> m = new HashMap<String, String>();
m.put("zs", "333-6666");
m.put("ls", "111-2222");
m.put("wwMark", "444-7777");
Iterator iter = m.entrySet().iterator();
while (iter.hasNext()) {
Map.Entry e = (Map.Entry) iter.next();
System.out.println(e.getKey() + " " + e.getValue());
}
}
}
更多请见:http://www.mark-to-win.com/tutorial/java_7_DefinitionUsageOfHashMap.html
最后
以上就是尊敬小兔子为你收集整理的java中HashMap有什么用,举例说明?的全部内容,希望文章能够帮你解决java中HashMap有什么用,举例说明?所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复