Student Roster Java Program, computer science homework help

User Generated

oep75

Programming

Description

I finished the first Student class on BlueJ and it compiles just fine. But I cannot figure out how to make the public Roster extends ArrayList<Student> class.

public class Student
{
private String lName, fName;
private int idNum;

public Student(int id, String fn, String ln)
{
lName = ln;
fName = fn;
idNum = id;
}

public String getLastName()

return lName; 
}

public String getFirstName()

return fName;
}

public int getID()

return idNum;
}

public String toString()

return fName + " " + lName + " " + idNum; 
}
}

The ArrayList<Student> class must have methods:

public boolean contiansStudent(String ln)- given the last name of the student and determines if the student exists in the list.

public Student retrieveById(int id)- given the id, finds student in list and returns the student. If student not found, eturn null.

public int retrieveId(String ln)- given last name of student, return the id for that student.

public boolean addStudent(Student s)- adds the Student s to the list and true or false value that this was accomplished. This method should not allow duplicate students to be added (duplicate meaning same name or id).

public boolean removeStudent(int id)- removes a student from the list based on id.

public boolean removeStudent(String ln)- removes a student from the list based on last name.

public void printRoster()- print all students in the ArrayList<Student> list. 

Help please!! 

User generated content is uploaded by users for the purposes of learning and should be used following Studypool's honor code & terms of service.

Explanation & Answer

Here is your Roster Classimport java.util.ArrayList;public class Roster extends ArrayList<Student> { public ArrayList<Student> students; public Roster() { students=new ArrayList<Student>(); } public boolean contiansStude...


Anonymous
I was struggling with this subject, and this helped me a ton!

Studypool
4.7
Trustpilot
4.5
Sitejabber
4.4

Similar Content

Related Tags