What is the most memory efficient way to model a java object that will have multiple possible datatypes: For example
public class Cell{
short type
int _int
double _double
String _string
}
Then instantiate this object and when setting the type set the appropriate value while leaving all others null. (I suspect this will take memory even if null except for String?)
Or,
public class Cell
{
short type
}
public class StringCell extends Cell
{
String _string
}
Where each type is a subclass of some common class that has only the appropriate datatype. (I suspect there will be some memory over head associated with subclasses)