So i'm in ap computer science right now and ArrayList are confusing the **** out of me.
We're working on a program in which we have to create a method that adds an "ap exam class" to an ArrayList heres what it looks like:
private ArrayList<APExam> myExams;
myExams = new ArrayList<APExam>();
/**
* add an exam to myExams
*/
public void addExam(APExam e)
{
}
any ideas? Thanks :)