Is there a way to put an int and a Double in the same array. I want to have an array (p1[]) where the first (p1[0]) is an int and all the rest of the elements are doubles. Is this possible?
|
|
You can do this by having an array of objects that are superclasses of Integer/Double (as pointed out elsewhere). However I would perhaps enforce type safety by implementing an object that has an |
|||
|
|
|
You can have an array of EDIT: You should of course make it a |
|||
|
|
|
If memory is very important, you might want to use long[] instead. You can store the "int" easily, but the "double" needs more work:
But maybe it's better to create a special class, and then shift the array index:
|
|||
|