Tagged Questions
14
votes
7answers
6k views
How does one instantiate an array of maps in Java?
I can declare an array of maps using generics to specify the map type:
private Map<String, Integer>[] myMaps;
However, I can't figure out how to instantiate it properly:
myMaps = new ...