|
Quote:
|
|
How would I go about making a multidimensional array of objects?
|
As Norm is suggesting, you really don't want to do this. You'll be far better off creating a class that holds your name String, age int, and any other pertinent objects, and then have a single dimensional array (or HashMap if need be) that holds objects of the new class's type.