Printing HashMap In Java

后端 未结 15 1700
半阙折子戏
半阙折子戏 2020-11-28 19:32

I have a HashMap:

private HashMap example = new HashMap();

Now I would lik

15条回答
  •  情歌与酒
    2020-11-28 19:35

    keySet() only returns a set of keys from your hashmap, you should iterate this key set and the get the value from the hashmap using these keys.

    In your example, the type of the hashmap's key is TypeKey, but you specified TypeValue in your generic for-loop, so it cannot be compiled. You should change it to :

    for (TypeKey name: example.keySet()){
                String key = name.toString();
                String value = example.get(name).toString();  
                System.out.println(key + " " + value);  
    } 
    

    Update for Java8:

     example.entrySet().forEach(entry->{
        System.out.println(entry.getKey() + " " + entry.getValue());  
     });
    

    If you don't require to print key value and just need the hashmap value, you can use others' suggestions.

    Another question: Is this collection is zero base? I mean if it has 1 key and value will it size be 0 or 1?

    The collection returned from keySet() is a Set.You cannot get the value from a Set using an index, so it is not a question of whether it is zero-based or one-based. If your hashmap has one key, the keySet() returned will have one entry inside, and its size will be 1.

提交回复
热议问题