I'm working on a evolutionary simulation model implemented in Java and ran into a key object-orientation design issue which I can't seem to work out. The problem can be summarized as follows:
I have a base abstract class Player and two concrete subclasses, Signaller and Receiver:
abstract class Player
{
Strategy[] strategies;
double fitness;
...
}
class Signaller extends Player
{
double quality;
....
}
class Receiver extends Player
{
double[] weights;
int chosenChannel;
....
}
Now I need classes which represent collections of Signallers and Receivers and I am constrained to using arrays to store them. There are methods common to both population types, but also specific methods for a signaller populations or for a receiver population.
Conceptually, I would need something like this:
abstract class Population
{
Player[] members;
void mixUpPopulation() {...}
Strategy[] getMeanStrategies() {...}
double getMeanFitness() {...}
...
}
class SignallerPopulation extends Population
{
Signaller[] members;
...
}
class ReceiverPopulation extends Population
{
Receiver[] members;
double[] getChannelPreferences() {...}
...
}
I have thought of two basic ways of achieving this:
Have the class hierarchy as described above.
Problem: How can thePlayer[]in the superclass and also theSignaller[]orReceiver[]in the subclasses refer to the same collection of objects?Make the base class generic:
class Population <T extends Player>
{
...
T[] members = (T[])new Object[popSize];
}
Problem: How do I implement the methods specific to each of the population types?
I would appreciate your insights into those problems or maybe suggestions of other ways of tackling the problem.