有关于JavaMap,应该掌握的8个问题

 前言

最近几天看了几篇有关于Java Map的外国博文,写得非常不错,所以整理了Java map 应该掌握的8个问题,都是日常开发司空见惯的问题,希望对大家有帮助;如果有不正确的地方,欢迎提出,万分感谢哈~

本章节所有代码demo已上传github

1、如何把一个Map转化为List

日常开发中,我们经常遇到这种场景,把一个Map转化为List。map转List有以下三种转化方式:

  • 把map的键key转化为list
  • 把map的值value转化为list
  • 把map的键值key-value转化为list

伪代码如下:

 
 
 
 
  1.   // key list
  2.   List keyList = new ArrayList(map.keySet());
  3.   // value list
  4.   List valueList = new ArrayList(map.values());
  5.   // key-value list
  6.   List entryList = new ArrayList(map.entrySet());

示例代码:

 
 
 
 
  1.   public class Test {
  2.       public static void main(String[] args) {
  3.           Map map = new HashMap<>();
  4.           map.put(2, "jay");
  5.           map.put(1, "whx");
  6.           map.put(3, "huaxiao");
  7.           //把一个map的键转化为list
  8.           List keyList = new ArrayList<>(map.keySet());
  9.           System.out.println(keyList);
  10.          //把map的值转化为list
  11.          List valueList = new ArrayList<>(map.values());
  12.          System.out.println(valueList);
  13.          把map的键值转化为list
  14.          List entryList = new ArrayList(map.entrySet());
  15.          System.out.println(entryList);
  16.  
  17.      }
  18.  }

运行结果:

 
 
 
 
  1.   [1, 2, 3]
  2.   [whx, jay, huaxiao]
  3.   [1=whx, 2=jay, 3=huaxiao]

2、如何遍历一个Map

我们经常需要遍历一个map,可以有以下两种方式实现:

通过entrySet+for实现遍历

 
 
 
 
  1.   for(Entry entry: map.entrySet()) {
  2.     // get key
  3.     K key = entry.getKey();
  4.     // get value
  5.     V value = entry.getValue();
  6.   }

实例代码:

 
 
 
 
  1.   public class EntryMapTest {
  2.       public static void main(String[] args) {
  3.           Map map = new HashMap<>();
  4.           map.put(2, "jay");
  5.           map.put(1, "whx");
  6.           map.put(3, "huaxiao");
  7.   
  8.           for(Map.Entry entry: map.entrySet()) {
  9.               // get key
  10.              Integer key = (Integer) entry.getKey();
  11.              // get value
  12.              String value = (String) entry.getValue();
  13.  
  14.              System.out.println("key:"+key+",value:"+value);
  15.          }
  16.      }
  17.  }

通过Iterator+while实现遍历

 
 
 
 
  1.   Iterator itr = map.entrySet().iterator();
  2.   while(itr.hasNext()) {
  3.     Entry entry = itr.next();
  4.     // get key
  5.     K key = entry.getKey();
  6.     // get value
  7.     V value = entry.getValue();
  8.   }

实例代码:

 
 
 
 
  1.   public class IteratorMapTest {
  2.       public static void main(String[] args) {
  3.           Map map = new HashMap<>();
  4.           map.put(2, "jay");
  5.           map.put(1, "whx");
  6.           map.put(3, "huaxiao");
  7.   
  8.           Iterator itr = map.entrySet().iterator();
  9.           while(itr.hasNext()) {
  10.              Map.Entry entry = (Map.Entry) itr.next();
  11.              // get key
  12.              Integer key = (Integer) entry.getKey();
  13.              // get value
  14.              String value = (String) entry.getValue();
  15.  
  16.              System.out.println("key:"+key+",value:"+value);
  17.          }
  18.      }
  19.  }

运行结果:

 
 
 
 
  1.   key:1,value:whx
  2.   key:2,value:jay
  3.   key:3,value:huaxiao

3、如何根据Map的keys进行排序

对Map的keys进行排序,在日常开发很常见,主要有以下两种方式实现。

把Map.Entry放进list,再用Comparator对list进行排序

 
 
 
 
  1.   List list = new ArrayList(map.entrySet());
  2.   Collections.sort(list, (Entry e1, Entry e2)-> {
  3.       return e1.getKey().compareTo(e2.getKey());
  4.   });

实例代码:

 
 
 
 
  1.   public class SortKeysMapTest {
  2.       public static void main(String[] args) {
  3.           Map map = new HashMap<>();
  4.           map.put("2010", "jay");
  5.           map.put("1999", "whx");
  6.           map.put("3010", "huaxiao");
  7.   
  8.           List> list = new ArrayList<>(map.entrySet());
  9.           Collections.sort(list, (Map.Entry e1, Map.Entry e2)-> {
  10.                  return e1.getKey().toString().compareTo(e2.getKey().toString());
  11.          });
  12.  
  13.          for (Map.Entry entry : list) {
  14.              System.out.println("key:" + entry.getKey() + ",value:" + entry.getValue());
  15.          }
  16.  
  17.      }
  18.  }

使用SortedMap+TreeMap+Comparator实现

 
 
 
 
  1. 1.  SortedMap sortedMap = new TreeMap(new Comparator() {
  2. 2.    @Override
  3. 3.    public int compare(K k1, K k2) {
  4. 4.      return k1.compareTo(k2);
  5. 5.    }
  6. 6.  });
  7. 7.  sortedMap.putAll(map);

实例代码:

 
 
 
 
  1.   public class SortKeys2MapTest {
  2.       public static void main(String[] args) {
  3.           Map map = new HashMap<>();
  4.           map.put("2010", "jay");
  5.           map.put("1999", "whx");
  6.           map.put("3010", "huaxiao");
  7.   
  8.           SortedMap sortedMap = new TreeMap(new Comparator() {
  9.               @Override
  10.              public int compare(String k1, String k2) {
  11.                  return k1.compareTo(k2);
  12.              }
  13.          });
  14.          sortedMap.putAll(map);
  15.  
  16.          Iterator itr = sortedMap.entrySet().iterator();
  17.          while(itr.hasNext()) {
  18.              Map.Entry entry = (Map.Entry) itr.next();
  19.              // get key
  20.              String key = (String) entry.getKey();
  21.              // get value
  22.              String value = (String) entry.getValue();
  23.  
  24.              System.out.println("key:"+key+",value:"+value);
  25.          }
  26.      }
  27.  }

运行结果:

 
 
 
 
  1.   key:1999,value:whx
  2.   key:2010,value:jay
  3.   key:3010,value:huaxiao

4、如何对Map的values进行排序

 
 
 
 
  1.   List list = new ArrayList(map.entrySet());
  2.   Collections.sort(list, (Entry e1, Entry e2) ->{
  3.       return e1.getValue().compareTo(e2.getValue());
  4.     });

实例代码:

 
 
 
 
  1.   public class SortValuesMapTest {
  2.       public static void main(String[] args) {
  3.           Map map = new HashMap<>();
  4.           map.put("2010", "jay");
  5.           map.put("1999", "whx");
  6.           map.put("3010", "huaxiao");
  7.   
  8.           List >list = new ArrayList<>(map.entrySet());
  9.           Collections.sort(list, (Map.Entry e1, Map.Entry e2)-> {
  10.                  return e1.getValue().toString().compareTo(e2.getValue().toString());
  11.              }
  12.          );
  13.  
  14.          for (Map.Entry entry : list) {
  15.              System.out.println("key:" + entry.getKey() + ",value:" + entry.getValue());
  16.          }
  17.      }
  18.  }

运行结果:

 
 
 
 
  1.   key:3010,value:huaxiao
  2.   key:2010,value:jay
  3.   key:1999,value:whx

5、如何初始化一个静态/不可变的Map

初始化一个静态不可变的map,单单static final+static代码块还是不行的,如下:

 
 
 
 
  1.   public class Test1 {
  2.       private static final Map map;
  3.       static {
  4.           map = new HashMap();
  5.           map.put(1, "one");
  6.           map.put(2, "two");
  7.       }
  8.       public static void main(String[] args) {
  9.           map.put(3, "three");
  10.          Iterator itr = map.entrySet().iterator();
  11.          while(itr.hasNext()) {
  12.              Map.Entry entry = (Map.Entry) itr.next();
  13.              // get key
  14.              Integer key = (Integer) entry.getKey();
  15.              // get value
  16.              String value = (String) entry.getValue();
  17.  
  18.              System.out.println("key:"+key+",value:"+value);
  19.          }
  20.      }
  21.  }

这里面,map继续添加元素(3,"three"),发现是OK的,运行结果如下:

 
 
 
 
  1.   key:1,value:one
  2.   key:2,value:two
  3.   key:3,value:three   

真正实现一个静态不可变的map,需要Collections.unmodifiableMap,代码如下:

 
 
 
 
  1.   public class Test2 {
  2.       private static final Map map;
  3.       static {
  4.           Map aMap = new HashMap<>();
  5.           aMap.put(1, "one");
  6.           aMap.put(2, "two");
  7.           map = Collections.unmodifiableMap(aMap);
  8.       }
  9.   
  10.      public static void main(String[] args) {
  11.          map.put(3, "3");
  12.          Iterator itr = map.entrySet().iterator();
  13.          while(itr.hasNext()) {
  14.              Map.Entry entry = (Map.Entry) itr.next();
  15.              // get key
  16.              Integer key = (Integer) entry.getKey();
  17.              // get value
  18.              String value = (String) entry.getValue();
  19.  
  20.             System.out.println("key:"+key+",value:"+value);
  21.          }
  22.      }
  23.  
  24.  }

运行结果如下:

可以发现,继续往map添加元素是会报错的,实现真正不可变的map。

6、HashMap, TreeMap, and Hashtable,ConcurrentHashMap的区别

7、如何创建一个空map

如果map是不可变的,可以这样创建:

 
 
 
 
  1.   Map map=Collections.emptyMap();
  2.   or
  3.   Map map=Collections.emptyMap();
  4.   //map1.put("1", "1"); 运行出错

如果你希望你的空map可以添加元素的,可以这样创建

 
 
 
 
  1. Map map = new HashMap();

8、有关于map的复制

有关于hashmap的复制,在日常开发中,使用也比较多。主要有 =,clone,putAll,但是他们都是浅复制,使用的时候注意啦,可以看一下以下例子:

例子一,使用=复制一个map:

 
 
 
 
  1.   public class CopyMapAssignTest {
  2.       public static void main(String[] args) {
  3.   
  4.           Map userMap = new HashMap<>();
  5.   
  6.           userMap.put(1, new User("jay", 26));
  7.           userMap.put(2, new User("fany", 25));
  8.   
  9.           //Shallow clone
  10.          Map clonedMap = userMap;
  11.  
  12.          //Same as userMap
  13.          System.out.println(clonedMap);
  14.  
  15.          System.out.println("\nChanges reflect in both maps \n");
  16.  
  17.          //Change a value is clonedMap
  18.          clonedMap.get(1).setName("test");
  19.  
  20.          //Verify content of both maps
  21.          System.out.println(userMap);
  22.          System.out.println(clonedMap);
  23.      }
  24.  }

运行结果:

 
 
 
 
  1.   {1=User{name='jay', age=26}, 2=User{name='fany', age=25}}
  2.   
  3.   Changes reflect in both maps
  4.   
  5.   {1=User{name='test', age=26}, 2=User{name='fany', age=25}}
  6.   {1=User{name='test', age=26}, 2=User{name='fany', age=25}}

从运行结果看出,对cloneMap修改,两个map都改变了,所以=是浅复制。

例子二,使用hashmap的clone复制:

 
 
 
 
  1.   {
  2.       public static void main(String[] args) {
  3.           HashMap userMap = new HashMap<>();
  4.   
  5.           userMap.put(1, new User("jay", 26));
  6.           userMap.put(2, new User("fany", 25));
  7.   
  8.           //Shallow clone
  9.           HashMap clonedMap = (HashMap) userMap.clone();
  10.  
  11.          //Same as userMap
  12.          System.out.println(clonedMap);
  13.  
  14.          System.out.println("\nChanges reflect in both maps \n");
  15.  
  16.          //Change a value is clonedMap
  17.          clonedMap.get(1).setName("test");
  18.  
  19.          //Verify content of both maps
  20.          System.out.println(userMap);
  21.          System.out.println(clonedMap);
  22.      }
  23.  }

运行结果:

 
 
 
 
  1.   {1=User{name='jay', age=26}, 2=User{name='fany', age=25}}
  2.   
  3.   Changes reflect in both maps
  4.   
  5.   {1=User{name='test', age=26}, 2=User{name='fany', age=25}}
  6.   {1=User{name='test', age=26}, 2=User{name='fany', age=25}}

从运行结果看出,对cloneMap修改,两个map都改变了,所以hashmap的clone也是浅复制。

例子三,通过putAll操作

 
 
 
 
  1.   public class CopyPutAllMapTest {
  2.       public static void main(String[] args) {
  3.           HashMap userMap = new HashMap<>();
  4.   
  5.           userMap.put(1, new User("jay", 26));
  6.           userMap.put(2, new User("fany", 25));
  7.   
  8.           //Shallow clone
  9.           HashMap clonedMap = new HashMap<>();
  10.          clonedMap.putAll(userMap);
  11.  
  12.          //Same as userMap
  13.          System.out.println(clonedMap);
  14.  
  15.          System.out.println("\nChanges reflect in both maps \n");
  16.  
  17.          //Change a value is clonedMap
  18.          clonedMap.get(1).setName("test");
  19.  
  20.          //Verify content of both maps
  21.          System.out.println(userMap);
  22.          System.out.println(clonedMap);
  23.      }
  24.  }

运行结果:

 
 
 
 
  1.   {1=User{name='jay', age=26}, 2=User{name='fany', age=25}}
  2.   
  3.   Changes reflect in both maps
  4.   
  5.   {1=User{name='test', age=26}, 2=User{name='fany', age=25}}
  6.   {1=User{name='test', age=26}, 2=User{name='fany', age=25}}

从运行结果看出,对cloneMap修改,两个map都改变了,所以putAll还是浅复制。

那么,如何实现深度复制呢?

可以使用序列化实现,如下为谷歌Gson序列化HashMap,实现深度复制的例子:

 
 
 
 
  1.   public class CopyDeepMapTest {
  2.   
  3.       public static void main(String[] args) {
  4.           HashMap userMap = new HashMap<>();
  5.   
  6.           userMap.put(1, new User("jay", 26));
  7.           userMap.put(2, new User("fany", 25));
  8.   
  9.           //Shallow clone
  10.          Gson gson = new Gson();
  11.          String jsonString = gson.toJson(userMap);
  12.  
  13.          Type type = new TypeToken>(){}.getType();
  14.          HashMap clonedMap = gson.fromJson(jsonString, type);
  15.  
  16.          //Same as userMap
  17.          System.out.println(clonedMap);
  18.  
  19.          System.out.println("\nChanges reflect in only one map \n");
  20.  
  21.          //Change a value is clonedMap
  22.          clonedMap.get(1).setName("test");
  23.  
  24.          //Verify content of both maps
  25.          System.out.println(userMap);
  26.          System.out.println(clonedMap);
  27.      }
  28.  }

运行结果:

 
 
 
 
  1.   {1=User{name='jay', age=26}, 2=User{name='fany', age=25}}
  2.   
  3.   Changes reflect in only one map
  4.   
  5.   {1=User{name='jay', age=26}, 2=User{name='fany', age=25}}
  6.   {1=User{name='test', age=26}, 2=User{name='fany', age=25}}

从运行结果看出,对cloneMap修改,userMap没有被改变,所以是深度复制。

名称栏目:有关于JavaMap,应该掌握的8个问题
当前链接:http://www.shufengxianlan.com/qtweb/news26/441726.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联