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 ...
0
votes
2answers
205 views
Instantiating and starting a Scala Actor in a Map
I'm experimenting with a map of actors, and would like to know how to instantiate them and start them in one fell swoop...
import scala.actors.Actor
import scala.actors.Actor._
import ...