I need to create a list array in java that can hold three different objects (Surname, forename, Result) and was wondering how to do that
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
closed as not a real question by Reverend Gonzo, Mac, bensiu, Dante is not a Geek, mc10 Dec 5 '12 at 2:33
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
The best and also Object Oriented approach is to Create a class with surname, forename and result as attributes(instance variables) like below:
now, create a List which only accepts
|
||||
|
|

=/=JavaScript – VisioN Dec 4 '12 at 21:56classfor it, with the fieldssurnamefornameandresult. – amit Dec 4 '12 at 21:57