java中HashMap有什么用

HashMap的用法 

马克-to-win:HashMap和HashSet很像,只不过它里面存的是一个一个的键值对。
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。



例: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());
        }
    }
}

result is:
ls 111-2222
zs 333-6666
wwMark 444-7777