java中HashMap有什么用,举例说明?

2021/7/14 11:05:12

本文主要是介绍java中HashMap有什么用,举例说明?,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

3.8 HashMap的用法

马克-to-win: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());
        }
    }
}
 

 

更多内容请见原文,原文转载自:https://blog.csdn.net/qq_44639795/article/details/103087424



这篇关于java中HashMap有什么用,举例说明?的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程