Convert Set> to HashMap

后端 未结 6 1352
礼貌的吻别
礼貌的吻别 2020-12-03 02:25

At one point in my code, I created a Set> from a map. Now I want to recreate the same map form, so I want to convert the HashS

6条回答
  •  广开言路
    2020-12-03 03:16

    There is no inbuilt API in java for direct conversion between HashSet and HashMap, you need to iterate through set and using Entry fill in map.

    one approach:

    Map map = new HashMap();
        //fill in map
        Set> set = map.entrySet();
    
        Map mapFromSet = new HashMap();
        for(Entry entry : set)
        {
            mapFromSet.put(entry.getKey(), entry.getValue());
        }
    

    Though what is the purpose here, if you do any changes in Set that will also reflect in Map as set returned by Map.entrySet is backup by Map. See javadoc below:

    Set> java.util.Map.entrySet()

    Returns a Set view of the mappings contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's own remove operation, or through the setValue operation on a map entry returned by the iterator) the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via the Iterator.remove, Set.remove, removeAll, retainAll and clear operations. It does not support the add or addAll operations.

提交回复
热议问题