Is it possible to store a string and 11 integers in the same object.
Thanks,
Alex
|
|
Sure. You can put any members in an object you like. For example, this class stores a string and 11 integers. The integers are stored in an array. If you know there are going to be 11 of them (or any fixed number obviously) this tends to be preferable to storing 11 separate int members.
So you can write some code like:
Note: arrays in Java are zero-based. That means that a size 11 array has elements at indexes 0 through 10 inclusive. You haven't really specified if 11 is a fixed number of what the meaning and usage of the numbers and text are. Depending on the answer that could completely change how best to do this. |
|||||||||||||
|
|
Yes - make 12 private data members and you're there. Whether they all belong in the same object is a different question. |
|||
|
|
|
You can put them in an array
|
|||||||||
|