java Map 一個key其實能夠保存多個value

咱們平時使用的Map,都是隻能在Map中保存一個相同的Key,咱們後面保存的相同的key都會將原來的key的值覆蓋掉,以下面的例子。java


[java] view plaincopyprint?在CODE上查看代碼片派生到個人代碼片web

  1. package test62;  spa

  2.   

  3. import java.util.HashMap;  .net

  4. import java.util.Map;  設計

  5. import java.util.Map.Entry;  code

  6.   

  7. public class test {  orm

  8.   

  9.     /** 對象

  10.      * @param args blog

  11.      * @author 王新 接口

  12.      */  

  13.     public static void main(String[] args) {  

  14.   

  15.         String str1 = new String("xx");  

  16.         String str2 = new String("xx");  

  17.         System.out.println(str1 == str2);  

  18.           

  19.         Map<String ,String> map = new HashMap<String,String>();  

  20.         map.put(str1, "hello");  

  21.         map.put(str2, "world");  

  22.           

  23.         for(Entry<String,String> entry :map.entrySet())  

  24.         {  

  25.             System.out.println(entry.getKey()+"   " + entry.getValue());  

  26.         }  

  27.         System.out.println("---->" + map.get("xx"));  

  28.     }  

  29.   

  30. }  



這個例子中咱們能夠看見相同的key只能保存一個value值,下面咱們來看一種map能夠實現一個key中保存多個value。這個map也就是IdentityHashMap。下面咱們就來介紹下IdentityHashMap這個類的使用。
API上這樣來解釋這個類的:此類不是 通用 Map 實現!此類實現Map 接口時,它有意違反 Map 的常規協定,該協定在比較對象時強制使用equals 方法。此類設計僅用於其中須要引用相等性語義的罕見狀況。
IdentityHashMap類利用哈希表實現 Map 接口,比較鍵(和值)時使用引用相等性代替對象相等性。咱們來看看這個類的代碼吧:


[java] view plaincopyprint?在CODE上查看代碼片派生到個人代碼片

 

  1. package test62;  

  2.   

  3. import java.util.IdentityHashMap;  

  4. import java.util.Map;  

  5. import java.util.Map.Entry;  

  6.   

  7. public class test1 {  

  8.     public static void main(String[] args) {  

  9.           

  10.         String str1 = "xx";  

  11.         String str2 = "xx";  

  12.         System.out.println(str1 == str2);  

  13.           

  14.         Map<String ,String> map = new IdentityHashMap<String ,String>();  

  15.           

  16.         map.put(str1, "hello");  

  17.         map.put(str2, "world");  

  18.           

  19.         for(Entry<String,String> entry : map.entrySet())  

  20.         {  

  21.             System.out.println(entry.getKey()+"   " + entry.getValue());  

  22.         }  

  23.         System.out.println("containsKey---> " + map.containsKey("xx"));  

  24.         System.out.println("value----> " + map.get("xx"));  

  25.     }  

  26. }  

  27.   

  28. 這端代碼輸出的結果以下:  

  29. true  

  30. xx   world  

  31. containsKey---> true  

  32. value----> world  


爲何咱們的Key仍是隻保存了一個值????這個問題和《java解惑第62題同樣》書上面是這樣解釋的,咱們來看看:
語言規範保證了字符串是內存限定的,換句話說,相等的字符串常量同時也是相同的[JLS 15.28]。這能夠確保在咱們的程序中第二次出現的字符串字面常量「xx」引用到了與第一次相同的String實例上,所以儘管咱們使用了一個IdentityHashMap來代替諸如HashMap這樣的通用目的的Map實現,可是對程序的行爲卻不會產生任何影響。
咱們來看看下面的代碼就能夠實現一個key保存兩個value的狀況。咱們的代碼以下:


[java] view plaincopyprint?在CODE上查看代碼片派生到個人代碼片

  1. package test62;  

  2.   

  3. import java.util.IdentityHashMap;  

  4. import java.util.Map;  

  5. import java.util.Map.Entry;  

  6.   

  7. public class test1 {  

  8.     public static void main(String[] args) {  

  9.           

  10.         String str1 = new String("xx");  

  11.         String str2 = new String("xx");  

  12.         System.out.println(str1 == str2);  

  13.           

  14.         Map<String ,String> map = new IdentityHashMap<String ,String>();  

  15.         map.put(str1, "hello");  

  16.         map.put(str2, "world");  

  17.       

  18.           

  19.         for(Entry<String,String> entry : map.entrySet())  

  20.         {  

  21.             System.out.println(entry.getKey()+"   " + entry.getValue());  

  22.         }  

  23.         System.out.println("     containsKey---> " + map.containsKey("xx"));  

  24.         System.out.println("str1 containsKey---> " + map.containsKey(str1));  

  25.         System.out.println("str2 containsKey---> " + map.containsKey(str2));  

  26.         System.out.println("      value----> " + map.get("xx"));  

  27.         System.out.println("str1  value----> " + map.get(str1));  

  28.         System.out.println("str2  value----> " + map.get(str2));  

  29.     }  

  30. }  

  31.   

  32.   

  33. 咱們的看看輸出的結果爲:  

  34. false  

  35. xx   world  

  36. xx   hello  

  37.      containsKey---> false  

  38. str1 containsKey---> true  

  39. str2 containsKey---> true  

  40.      value----> null  

  41. str1  value----> hello  

  42. str2  value----> world  


咱們能夠知道IdentityHashMap是靠對象來判斷key是否相等的,若是咱們一個key須要保存多個value的時候就須要使用到這個IdentityHashMap類,這樣咱們咱們就能夠須要的時候使用到這個類了。
我相信平時的多積累總會爲咱們帶來好處的。

相關文章
相關標籤/搜索