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 ...
5
votes
4answers
1k views

Instantiate Generic Type in C# class

Pretty basic question in C#, class Data<T> { T obj; public Data() { // Allocate to obj from T here // Some Activator.CreateInstance() method ? obj = ??? } ...
3
votes
2answers
388 views

How can I use Scala's Manifest class to instantiate the erased class at runtime?

I'm doing some WebDriver+PageObject stuff. (If your not familiar with PageObjects, this is a pattern where you have a class representing each page on your site which exposes all the functions of the ...
1
vote
2answers
74 views

Instantiating a generic extension of an abstract class

Trying to write some generalised code for Genetic Algorithms and I have an abstract class Genotype as follows: public abstract class Genotype { private ArrayList<Gene> genotype = new ...