1. 程式人生 > >map用value值找key的兩種方法

map用value值找key的兩種方法

map用value值找key的兩種方法

Map中是一個key有且只有一個value. 但是一個value可以對應多個key值.
只用用特殊方法才能用value值來找key,以下就是用value值找key的兩種方法

public static void main(String[] args) {
    // TODO Auto-generated method stub
    Map<Integer,Integer> m=new HashMap<>();
    m.put(1, 2);
    m.put(2, 2);
    m.put(3, 0);
    m.put(4, 1);
    Collection<Integer> c=m.values();
    Integer sum=0;
    for(Integer b:c){
        if(sum.compareTo(b)<0){
            sum=b;
        }
    }
    //      Set<Entry<Integer,Integer>> sets=m.entrySet();
    //      for(Entry<Integer,Integer> e:sets){
    //          if(sum.compareTo(e.getValue())==0){
    //              System.out.println(e.getKey());
    //          }
    //      }
    Set en=m.entrySet();
    Iterator it=en.iterator();
    while(it.hasNext()){
        Map.Entry me=(Map.Entry) it.next();
        //entrySet()方法就是把map中的每個鍵值對變成對應成Set集合中的一個物件.
        if(me.getValue().equals(sum)){
            //這裡的Map.Entry就是一種型別,專值map中的一個鍵值對組成的物件.
            System.out.println(me.getKey()+":"+me.getValue());
        }
    }