JAVA 类集框架 Map

映射中的每一个元素包含一个键对象和一个值对象,键不可以重复,值可以重复

import java.util.HashMap;

public class Test {

    public static void main(String[] args) {
        // TODO Auto-generated method stub

        HashMap<String, String> hashMap = new HashMap<String, String>();
        hashMap.put("1", "a");
        hashMap.put("2", "b");
        hashMap.put("3", "c");
        hashMap.put("2", "d");

        System.out.println(hashMap.size());
        System.out.println(hashMap.get("2"));
    }

}

运行结果

3
d
posted @ 2020-09-06 23:34  thomas_blog  阅读(118)  评论(0编辑  收藏  举报