Java 基础之HashMap key重复值将被覆盖

 

        Map map = new HashMap();


        map.put("apple", "苹果");     //向列表中添加数据

        map.put("computer", "计算机");   //向列表中添加数据

        map.put("book", "书");     //向列表中添加数据

        map.put("book", "");

        

      

        

       //遍历map中的键  

        for (String key : map.keySet()) { 

            System.out.println("map的key= "+ key +" map的 value= " + map.get(key));

        } 

        

       

       //打印结果:

       

        map的key= computer map的 value= 计算机

        map的key= apple map的 value= 苹果

        map的key= book map的 value= 

你可能感兴趣的:(java)