Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

is there some way of initializing a Java HashMap like this?:

Map<String,String> test = new HashMap<String, String>{"test":"test","test":"test"};

What would be the correct syntax? I have not found anything regarding this. Is this possible? I am looking for the shortest/fastet way to put some "final/static" values in a map that never change and are known in advance when crerating the Map.

Thanks very much! Jens

share|improve this question
relatd: stackoverflow.com/questions/2041778/… – Bozho Jul 23 '11 at 18:55

4 Answers

up vote 28 down vote accepted

No, you will have to add all the elements manually. You can use a static initializer though:

public class Demo
{
    private static final Map<String, String> myMap;
    static
    {
        myMap = new HashMap<String, String>();
        myMap.put("a", "b");
        myMap.put("c", "d");
    }
}
share|improve this answer

Maybe this but you have to be careful with that:

    HashMap<String, String > h = new HashMap<String, String>(){{
        put("a","b");
    }};

read more here: http://www.c2.com/cgi/wiki?DoubleBraceInitialization

share|improve this answer
1  
It works but it's ugly and has invisible side effects that the user should understand before doing it - for example, generating an entire anonymous class on the spot. – jprete Jul 23 '11 at 18:48
4  
yep, that is way I wrote about being careful and gave a link to the description. – gregory561 Jul 23 '11 at 18:50
Great link. The reference in that link to GreencoddsTenthRuleOfProgramming is worth the read. – michaelok May 16 at 21:10

There is no direct way to do this - Java has no Map literals (yet - I think they were proposed for Java 8).

Some people like this:

Map<String,String> test = new HashMap<String, String>(){{
       put("test","test"); put("test","test");}};

This creates an anonymous subclass of HashMap, whose instance initializer puts these values. (By the way, a map can't contain twice the same value, your second put will overwrite the first one.)

The normal way would be this:

Map<String,String> test = new HashMap<String, String>();
map.put("test","test");
map.put("test","test");

If you want your map to never change, you should after the initialization wrap your map by Collections.immutableMap(...).

share|improve this answer
Map<String,String> test = new HashMap<String, String>()
{
    {
        put(key1, value1);
        put(key2, value2);
    }
};
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.