Question

Can you use an instance initializer with a generic HashMap?

I found this code online, but am having trouble converting it to a generic HashMap instead of a basic HashMap:

someMethodThatTakesAHashMap(new HashMap(){{put("a","value-a"); put("c","value-c");}}); 
Was it helpful?

Solution

Here's how:

class Foo {

  static void someMethodThatTakesAHashMap(HashMap<String, String> map) {
    System.out.println(map);  
  }

  public static void main(String[] args) {
    someMethodThatTakesAHashMap(new HashMap<String, String>(){{put("a","value-a"); put("c","value-c");}});
  }
}

Edit: about the suppressing of the serial-ID: yes, you could do that, but I'd rewrite it like this:

public class Foo {

  static void someMethodThatTakesAHashMap(Map<String, String> map) {
    System.out.println(map);  
  }

  public static void main(String[] args) {
    HashMap<String, String> map  = new HashMap<String, String>();
    map.put("a","value-a"); 
    map.put("c","value-c");
    someMethodThatTakesAHashMap(map);
  }
}

No suppressing needed, and much better to read, IMO.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top