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.

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

share|improve this question
Java =/= JavaScript – VisioN Dec 4 '12 at 21:56
2  
(assuming java) A better approach will probably be to create a class for it, with the fields surname forname and result. – amit Dec 4 '12 at 21:57

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.

1 Answer

The best and also Object Oriented approach is to Create a class with surname, forename and result as attributes(instance variables) like below:

class Student{
private String surname;
private String forename;
private String result;
public Details(String surname, String forename, String res){
   //initialize properties here
  }
}

now, create a List which only accepts Student Object.

List<Student> list = new ArrayList<Student>();
list.add(new Student("surname", "forname", "pass"));
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.